Skip to content

Commit

Permalink
Prepare for 4.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
RoadrunnerWMC committed Jul 28, 2023
1 parent 0850b5e commit b315991
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
8 changes: 8 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ can be downloaded from the `Releases page on GitHub
.. contents:: :local:


4.1.0 (July 28, 2023)
---------------------
* Replaced the `crcmod` dependency with a pure-Python CRC16 implementation in
ndspy itself.
* Fixed a bug in the undocumented :py:mod:`ndspy.graphics2D` module.
* A few documentation improvements.


4.0.0 (Mar. 15, 2022)
---------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@
# built documents.
#
# The short X.Y version.
version = '4.0'
version = '4.1'
# The full version, including alpha/beta/rc tags.
release = '4.0.0'
release = '4.1.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion ndspy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import enum


VERSION = collections.namedtuple('version', 'major minor patch')(4, 0, 0)
VERSION = collections.namedtuple('version', 'major minor patch')(4, 1, 0)
try: VERSION.__class__.__name__ = 'ndspy.version'
except: pass

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name='ndspy',
version='4.0.0',
version='4.1.0',
author='RoadrunnerWMC',
author_email='[email protected]',
description='Python library that can help you read, modify and create many types of files used in Nintendo DS games.',
Expand All @@ -26,6 +26,7 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
],
Expand Down

0 comments on commit b315991

Please sign in to comment.