Skip to content

Commit 2a545f5

Browse files
authored
Bump version to 0.7.5 (#84)
1 parent 6e975f2 commit 2a545f5

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# `edn_format` Changelog
22

3+
## v0.7.5 (2020/11/06)
4+
5+
* No changes to library code
6+
* Migrated from Travis to GitHub Actions, to enable running tests on creating pull request + easy publishing to PyPI.
7+
38
## v0.7.4 (2020/10/21)
49

510
* `Char` subclasses `unicode` instead of `str` in Python 2 in order to support unicode characters

CONTRIBUTING.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,13 @@ Run a linter over the code with:
2323

2424
flake8 --max-line-length=100 --exclude=parsetab.py .
2525

26-
## Release a new version ##
26+
## Release a new version with GitHub ##
2727

28-
To release a new version:
28+
1. Bump up the version number in [`setup.py`](./setup.py), e.g. `0.7.0`
29+
2. Fill the [`CHANGELOG.md`](./CHANGELOG.md)
30+
3. Create a new tag starting with `v`, e.g. `v0.7.5` (see `.github/workflows/publish-pypi.yml`)
31+
32+
## Release a new version without GitHub ##
2933

3034
1. Ensure you have [setup GPG](https://help.github.com/en/articles/generating-a-new-gpg-key) and [`twine`](https://pypi.org/project/twine/)
3135
2. Bump up the version number in [`setup.py`](./setup.py), e.g. `0.7.0`

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
setup(name="edn_format",
11-
version="0.7.4",
11+
version="0.7.5",
1212
author="Swaroop C H",
1313
author_email="[email protected]",
1414
description="EDN format reader and writer in Python",

0 commit comments

Comments
 (0)