Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 89c505b

Browse files
committed
Bump version to v2.2.1
Prior v2.2.0 release blocked upload.
1 parent 3125120 commit 89c505b

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

CHANGELOG.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ This project adheres to [Semantic Versioning][].
55

66
This document follows the conventions laid out in [Keep a CHANGELOG][].
77

8-
## [2.2.0][]
8+
## [2.2.1][] - 2017-01-26
9+
10+
`v2.2.0` had a release issue on pypi. Bumped to `v2.2.1`
911

1012
### Added
1113

@@ -455,9 +457,9 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
455457

456458
[semantic versioning]: http://semver.org/
457459

458-
[unreleased]: ../../compare/v2.2.0...HEAD
460+
[unreleased]: ../../compare/v2.2.1...HEAD
459461

460-
[2.2.0]: ../../compare/v2.2.0-dev1...v2.2.0
462+
[2.2.1]: ../../compare/v2.2.0-dev1...v2.2.1
461463

462464
[2.2.0-dev1]: ../../compare/v2.1.0...v2.2.0-dev1
463465

appveyor.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.2.0-build{build}
1+
version: 2.2.1-build{build}
22

33
platform:
44
- x86
@@ -46,8 +46,8 @@ install:
4646
- "%PYTHON%\\python.exe -m pip install six"
4747

4848
build_script:
49-
# build wheel
50-
- "%PYTHON%\\python.exe setup.py bdist_wheel"
49+
# build clean sdist & wheel
50+
- "%PYTHON%\\python.exe setup.py sdist bdist_wheel"
5151

5252
# build and dist conda package
5353
- cmd: "%CMD_IN_ENV% %CONDA_BLD%\\Scripts\\conda build conda.recipe"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ def _get_interop_filename():
338338

339339
setup(
340340
name="pythonnet",
341-
version="2.2.0",
341+
version="2.2.1",
342342
description=".Net and Mono integration for Python",
343343
url='https://pythonnet.github.io/',
344344
license='MIT',

src/runtime/resources/clr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Code in this module gets loaded into the main clr module.
33
"""
44

5-
__version__ = "2.2.0"
5+
__version__ = "2.2.1"
66

77

88
class clrproperty(object):

0 commit comments

Comments
 (0)