Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
micktwomey committed Nov 7, 2021
1 parent 6a00ab0 commit a4967af
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
18 changes: 14 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ Releasing
3. Note new and previous version.
4. `rm -rf dist`
5. `poetry build`
6. `git log --oneline $LAST_RELEASE..@ > git_log.txt`
7. `gh release create --notes-file git_log.txt --title $NEXT_VERSION $NEXT_VERSION dist/*`
6. `git log --oneline $LAST_VERSION..@ > git_log.txt`
7. `gh release create --notes-file git_log.txt --title $(poetry version -s) $(poetry version -s) dist/*`
8. `poetry publish`

Supported Python Versions
Expand All @@ -113,8 +113,8 @@ Python 3 versions < 3.6 are untested but should work.
Changes
=======

Unreleased 1.0.0
----------------
1.0.0
-----

* Drop python < 3.6 support
* Add type annotations to code
Expand All @@ -124,6 +124,16 @@ Unreleased 1.0.0
* Switch to nox for testing
* Lots of small project development changes

0.1.16
------

* Include `docs/` into sdist tarball (thanks to kloczek in https://github.com/micktwomey/pyiso8601/issues/14)

0.1.15
------

* Include .pyi files in built wheels and source tarballs

0.1.14
------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "iso8601"
version = "1.0.0-alpha.2"
version = "1.0.0"
description = "Simple module to parse ISO 8601 dates"
authors = ["Michael Twomey <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit a4967af

Please sign in to comment.