File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Release notes
2+
3+ Notable differences from version 1.1.2.
4+
5+ ## Version 1.2.0 – 2022-12-29
6+
7+ ### Added
8+
9+ - Support for Python 3.8, 3.9, 3.10.
10+ - Use ddp3 to store project files.
11+
12+ ### Changed
13+
14+ ### Deprecated
15+
16+ ### Removed
17+
18+ ### Fixed
19+
20+ - Incompatible conversion between bytes and str from py2 to py3.
Original file line number Diff line number Diff line change 1+ $PROJECT = 'diffpy.pdfgui'
2+ $ACTIVITIES = [
3+ 'tag' , # Creates a tag for the new version number
4+ 'push_tag' , # Pushes the tag up to the $TAG_REMOTE
5+ 'pypi' , # Sends the package to pypi
6+ 'ghrelease' # Creates a Github release entry for the new tag
7+ ]
8+ $PUSH_TAG_REMOTE = 'git@github.com:diffpy/diffpy.pdfgui.git' # Repo to push tags to
9+ $GITHUB_ORG = 'diffpy' # Github org for Github releases and conda-forge
10+ $GITHUB_REPO = 'diffpy.pdfgui' # Github repo for Github releases and conda-forge
11+ $GHRELEASE_PREPEND = """See [CHANGELOG.md](CHANGELOG.md) for detailed release notes.
12+
13+ The release is also available at [PyPI](https://pypi.org/project/diffpy.pdfgui/) and [Conda](https://anaconda.org/conda-forge/diffpy.pdfgui).
14+ """ # release message
Original file line number Diff line number Diff line change 1515
1616# Use this version when git data are not available, like in git zip archive.
1717# Update when tagging a new release.
18- FALLBACK_VERSION = '1.4 .0'
18+ FALLBACK_VERSION = '1.2 .0'
1919
2020# determine if we run with Python 3.
2121PY3 = (sys .version_info [0 ] == 3 )
You can’t perform that action at this time.
0 commit comments