Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 1.0.2. #53

Merged
merged 2 commits into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading