Skip to content

Commit 2207c2a

Browse files
authored
Merge pull request #143 from alexpdev/v0.8
V0.8
2 parents a5aabab + d42013e commit 2207c2a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+18338
-22029
lines changed

.github/workflows/linux_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v2.4.1
1313
- name: Set up Python
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v4.1.0
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
- name: Display Python Version

.github/workflows/mac_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v2.4.1
1313
- name: Set up Python
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v4.1.0
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
- name: Display Python Version

.github/workflows/pyworkflow.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v2.4.1
33+
- name: Setup Python
34+
uses: actions/setup-python@v4.1.0
3335

3436
- name: Display Python Version
3537
run: python --version

.github/workflows/windows_ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: MacCI
1+
name: WindowsCI
22

33
on: [push, pull_request]
44
jobs:
@@ -9,9 +9,9 @@ jobs:
99
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v2.4.1
1313
- name: Set up Python
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v4.1.0
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
- name: Display Python Version

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ temp/
1212
.benchmarks/
1313
runner/
1414
run.py
15+
venv/
1516
# Byte-compiled / optimized / DLL files
1617
*.bin
1718
*.pyc

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# TorrentFile
22

3+
## Version 0.8.0
4+
5+
- overhaul documentation
6+
- reconfigured CI files and configuration and packaging files
7+
- Convert to pyproject.toml setuptools packaging info source
8+
9+
---------------------
10+
311
## Version 0.7.12
412

513
- Changed default behavior to save torrent files to cwd

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,14 @@ test: ## Get coverage report
7777
tox
7878

7979
docs: ## Regenerate docs from changes
80-
python -c "$$UPDATE_PACKAGE_VERSION"
8180
rm -rfv docs/*
8281
rm -rfv site/index.md
8382
cp -rfv README.md site/index.md
8483
cp -rfv CHANGELOG.md site/changelog.md
8584
mkdocs build
8685
touch docs/.nojekyll
8786

88-
push: clean docs test ## Push to github
87+
push: clean test docs ## Push to github
8988
git add .
9089
git commit -m "$m"
9190
git push

0 commit comments

Comments
 (0)