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

Skip to content

Commit 3125120

Browse files
committed
Update README/CHANGELOG for v2.2.0 release
Fixed appveyor project path http://help.appveyor.com/discussions/problems/5951-swap-url-of-two-projects Add label to Travis shield Use label for AppVeyor shield instead of logo
1 parent 1d9d184 commit 3125120

File tree

2 files changed

+39
-11
lines changed

2 files changed

+39
-11
lines changed

CHANGELOG.md

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,32 @@ This project adheres to [Semantic Versioning][].
55

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

8-
## [Unreleased][]
8+
## [2.2.0][]
99

1010
### Added
1111

12-
- Python 3.6 support.
13-
- Added `__version__` to module.
12+
- Python 3.6 support (#310)
13+
- Added `__version__` to module (#312)
14+
- Added `conda` recipe (#281)
15+
- Nuget update on build (#268)
16+
- Added `__cause__` attribute on exception (#287)
17+
18+
### Changed
19+
20+
- License to MIT (#314)
21+
- Project clean-up (#320)
22+
- Refactor `#if` directives
23+
- Rename Decref/Incref to XDecref/XIncre (#275)
24+
- Remove printing if Decref is called with NULL (#275)
25+
26+
### Removed
27+
28+
- Python 3.2 support
29+
- Python 3.3 support
30+
31+
### Fixed
32+
33+
- Fixed `isinstance` refcount_leak (#273)
1434

1535
## [2.2.0-dev1][] - 2016-09-19
1636

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

436456
[semantic versioning]: http://semver.org/
437457

438-
[unreleased]: ../../compare/v2.2.0-dev1...HEAD
458+
[unreleased]: ../../compare/v2.2.0...HEAD
459+
460+
[2.2.0]: ../../compare/v2.2.0-dev1...v2.2.0
439461

440462
[2.2.0-dev1]: ../../compare/v2.1.0...v2.2.0-dev1
441463

README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
# pythonnet - Python for .NET
22

3+
[![appveyor shield][]](https://ci.appveyor.com/project/pythonnet/pythonnet/branch/master)
4+
[![travis shield][]](https://travis-ci.org/pythonnet/pythonnet)
5+
[![license shield][]](./LICENSE)
6+
[![pypi package version][]](https://pypi.python.org/pypi/pythonnet)
7+
[![python supported shield][]](https://pypi.python.org/pypi/pythonnet)
8+
39
Python for .NET is a package that gives Python programmers nearly
410
seamless integration with the .NET Common Language Runtime (CLR) and
511
provides a powerful application scripting tool for .NET developers.
612
It allows Python code to interact with the CLR, and may also be used to
713
embed Python into a .NET application.
814

9-
[![travis shield][]](https://travis-ci.org/pythonnet/pythonnet)
10-
[![appveyor shield][]](https://ci.appveyor.com/project/pythonnet/pythonnet-0kq5d/branch/master)
11-
[![license shield][]](./LICENSE)
12-
1315
## Calling .NET code from Python
1416

1517
Python for .NET allows CLR namespaces to be treated essentially
@@ -76,8 +78,12 @@ int32
7678
[6. 10. 12.]
7779
```
7880

79-
[travis shield]: https://img.shields.io/travis/pythonnet/pythonnet/master.svg?style=flat-square
81+
[appveyor shield]: https://img.shields.io/appveyor/ci/pythonnet/pythonnet/master.svg?label=AppVeyor
82+
83+
[license shield]: https://img.shields.io/badge/license-MIT-blue.svg
84+
85+
[pypi package version]: https://img.shields.io/pypi/v/pythonnet.svg
8086

81-
[appveyor shield]: https://img.shields.io/appveyor/ci/pythonnet/pythonnet-0kq5d/master.svg?style=flat-square&logo=data%3Aimage%2Fsvg%2Bxml%2C%3Csvg+xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27+width%3D%2740%27+height%3D%2740%27+viewBox%3D%270+0+40+40%27%3E%3Cpath+fill%3D%27%23BBB%27+d%3D%27M20+0c11+0+20+9+20+20s-9+20-20+20S0+31+0+20+9+0+20+0zm4.9+23.9c2.2-2.8+1.9-6.8-.9-8.9-2.7-2.1-6.7-1.6-9+1.2-2.2+2.8-1.9+6.8.9+8.9+2.8+2.1+6.8+1.6+9-1.2zm-10.7+13c1.2.5+3.8+1+5.1+1L28+25.3c2.8-4.2+2.1-9.9-1.8-13-3.5-2.8-8.4-2.7-11.9+0L2.2+21.6c.3+3.2+1.2+4.8+1.2+4.9l6.9-7.5c-.5+3.3.7+6.7+3.5+8.8+2.4+1.9+5.3+2.4+8.1+1.8l-7.7+7.3z%27%2F%3E%3C%2Fsvg%3E
87+
[python supported shield]: https://img.shields.io/pypi/pyversions/pythonnet.svg
8288

83-
[license shield]: https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square
89+
[travis shield]: https://img.shields.io/travis/pythonnet/pythonnet/master.svg?label=Travis

0 commit comments

Comments
 (0)