Skip to content

Commit

Permalink
Merge pull request #53 from jd-boyd/jdb_version_bump
Browse files Browse the repository at this point in the history
Bump version to 1.0.2.
  • Loading branch information
jd-boyd authored Jan 9, 2024
2 parents 8c181d3 + 39bfaec commit 72422ca
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
- 3.9
- "3.10"
- "3.11"
- "3.12"
- pypy-3.8
- pypy-3.9
os:
Expand Down
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ Links:
* `Travis CI <https://travis-ci.org/#!/jd-boyd/sexpdata>`_


Making a release
-------

1. `python ./setup.py sdist`
1. `twine upload dist/*`


License
-------

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "sexpdata"
version = "1.0.1"
version = "1.0.2"
authors = [
{ name="Joshua D. Boyd", email="[email protected]" },
{ name="Takafumi Arakaki", email="[email protected]" },
Expand All @@ -13,6 +13,7 @@ authors = [
description = "S-expression parser for Python"
readme = "README.rst"
requires-python = ">=3.7"
license = {text = "BSD-2-Clause"}
classifiers = [
"Development Status :: 3 - Alpha",
'License :: OSI Approved :: BSD License',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='sexpdata',
version='1.0.1',
version='1.0.2',
py_modules=['sexpdata'],
author='Joshua D. Boyd, Takafumi Arakaki',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion sexpdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

__version__ = '1.0.1'
__version__ = '1.0.2'
__author__ = 'Joshua D. Boyd, Takafumi Arakaki'
__license__ = 'BSD License'
__all__ = [
Expand Down

0 comments on commit 72422ca

Please sign in to comment.