Skip to content

Commit eaa171a

Browse files
committed
package bump
1 parent 7d87225 commit eaa171a

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
- N/A
8+
9+
## [1.7.1]
10+
711
- Updated package requirements
812

913
## [1.7.0]
@@ -60,7 +64,9 @@ All notable changes to this project will be documented in this file.
6064

6165
### Initial Release
6266

63-
[Unreleased]: https://github.com/joeyagreco/sleeper/compare/v1.7.0...HEAD
67+
[Unreleased]: https://github.com/joeyagreco/sleeper/compare/v1.7.1...HEAD
68+
69+
[1.7.1]: https://github.com/joeyagreco/sleeper/releases/tag/v1.7.1
6470

6571
[1.7.0]: https://github.com/joeyagreco/sleeper/releases/tag/v1.7.0
6672

Makefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,15 @@ test:
2222
.PHONY: up-reqs
2323
up-reqs:
2424
@pipreqs --force
25+
26+
.PHONY: pkg-build
27+
pkg-build:
28+
@python3 setup.py sdist bdist_wheel
29+
30+
.PHONY: pkg-test
31+
pkg-test:
32+
@python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
33+
34+
.PHONY: pkg-prod
35+
pkg-prod:
36+
@python3 -m twine upload dist/*

requirements.dev.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
black==23.3.0
22
autoflake==2.1.1
33
isort==5.12.0
4-
pytest==7.4.3
4+
pytest==7.4.3
5+
twine==4.0.2
6+
wheel==0.42.0

sleeper/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.7.0"
1+
__version__ = "1.7.1"
22

33
# minimum supported Python version
44
__version_minimum_python__ = "3.10"

0 commit comments

Comments
 (0)