Skip to content

Commit

Permalink
PR-6: New release pyinstabot-downloader:v2.0.0 (#7)
Browse files Browse the repository at this point in the history
## v2.0.0 - 2023-09-16
### What's Changed
**Full Changelog**: v1.0.1...v2.0.0 by @obervinov in #7

In this release, the approach with issue and github project was implemented already at the very last stages of release preparation, so:
- issue contains a list of mixed issues
- these issue are duplicated in the readme sections
#### 🐛 Bug Fixes
* (Update dependencies: 2023.06.13)[#6]
* (Update the project code and fix bugs)[#13]
* (Redundant login and password reading from vault)[#16]
* (The status is "None" when an exception occurred when uploading to mega, and the retry method)[#15]
#### 📚 Documentation
* (Update project repository: 2023.06.13)[#8]
#### 💥 Breaking Changes
* (Update dependencies: 2023.06.13)[#6]
* (Update the project code and fix bugs)[#13]
#### 🚀 Features
* (Update dependencies: 2023.06.13)[#6]
* (Added the support GitHub Actions)[#10]
* (Update project repository: 2023.06.13)[#8]
* (Update the project code and fix bugs)[#13]
* (Check the download history for the specified post)[#17]
  • Loading branch information
obervinov authored Sep 16, 2023
1 parent b9ef1ae commit 2e8f284
Show file tree
Hide file tree
Showing 39 changed files with 2,438 additions and 718 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[flake8]
max-line-length=100
exclude = .git,__pycache__
extend-ignore = W605, E303
extend-ignore =
9 changes: 9 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.

# These owners will be the default owners for everything in the repo.
* @obervinov

# Order is important. The last matching pattern has the most precedence.
# You can also use email addresses if you prefer.
# docs/* obervinov@pm.me
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/custom.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Custom issue template
about: Describe this issue template's purpose here.
title: ''
labels: ''
assignees: ''

---


20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
---
version: 2
updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
16 changes: 16 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# PR-1: NAME
**Full Changelog**: https://github.com/obervinov/pyinstabot-downloader/compare/1...2 by @obervinov in https://github.com/obervinov/pyinstabot-downloader/pull/1
## VERSION - YYYY-MM-DD
### What's Changed
#### 🐛 Bug Fixes
*
*
#### 📚 Documentation
*
*
#### 💥 Breaking Changes
*
*
#### 🚀 Features
*
*
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Create GitHub Release

# yamllint disable-line rule:truthy
on:
push:
branches: [main]

jobs:
create-release:
uses: obervinov/_templates/.github/workflows/create.release.yml@v1.0.5
24 changes: 24 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Test and Build release

# yamllint disable-line rule:truthy
on:
push:
branches:
- '*'
- '*/*'
- '**'

env:
# yamllint disable-line rule:line-length
PROJECT_DESCRIPTION: "This project is a telegram bot that allows you to create backups of content from your Instagram profile to Dropbox or Mega clouds, as well as in the local file system."


jobs:
pylint:
uses: obervinov/_templates/.github/workflows/test.pylint.yml@v1.0.5
verify-changelog:
uses: obervinov/_templates/.github/workflows/verify.changelog.yml@v1.0.5
build-release:
uses: obervinov/_templates/.github/workflows/build.docker.yml@v1.0.5
needs: [pylint, verify-changelog]
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
.vscode/*
.DS_Store
*.tmp
vault/data/
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
Loading

0 comments on commit 2e8f284

Please sign in to comment.