Skip to content

Commit d64e37e

Browse files
committed
Bump version: 0.1.6 → 0.1.7
1 parent 9928484 commit d64e37e

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.6
2+
current_version = 0.1.7
33
commit = True
44
tag = True
55

CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ This projects adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.ht
88

99
## [Unreleased]
1010

11+
## [0.1.7] - 2026-01-26
12+
13+
### Changed
14+
15+
- PyPi links
16+
1117
## [0.1.6] - 2025-12-11
1218

1319
### Changed
@@ -58,9 +64,11 @@ This projects adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.ht
5864
- First release on PyPI.
5965
- Added backporting from 3.10.0 -> 3.9.0 and 3.9.0 -> 3.8.0
6066

61-
[Unreleased]: https://github.com/jmarrec/openstudio-backporter/compare/v0.1.0...HEAD
62-
[0.1.3]: https://github.com/jmarrec/openstudio-backporter/compare/v0.1.4...v0.1.5
63-
[0.1.3]: https://github.com/jmarrec/openstudio-backporter/compare/v0.1.3...v0.1.4
67+
[Unreleased]: https://github.com/jmarrec/openstudio-backporter/compare/v0.1.7...HEAD
68+
[0.1.7]: https://github.com/jmarrec/openstudio-backporter/compare/v0.1.6...v0.1.7
69+
[0.1.6]: https://github.com/jmarrec/openstudio-backporter/compare/v0.1.5...v0.1.6
70+
[0.1.5]: https://github.com/jmarrec/openstudio-backporter/compare/v0.1.4...v0.1.5
71+
[0.1.4]: https://github.com/jmarrec/openstudio-backporter/compare/v0.1.3...v0.1.4
6472
[0.1.3]: https://github.com/jmarrec/openstudio-backporter/compare/v0.1.2...v0.1.3
6573
[0.1.2]: https://github.com/jmarrec/openstudio-backporter/compare/v0.1.1...v0.1.2
6674
[0.1.1]: https://github.com/jmarrec/openstudio-backporter/compare/v0.1.0...v0.1.1

openstudiobackporter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = """Julien Marrec"""
44
__email__ = 'contact@effibem.com'
5-
__version__ = '0.1.6'
5+
__version__ = '0.1.7'
66

77
from openstudiobackporter.backporter import Backporter
88

pyproject.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
[tool]
22
[tool.poetry]
33
name = "openstudio-backporter"
4-
version = "0.1.6"
5-
homepage = "https://github.com/jmarrec/openstudio-backporter"
4+
version = "0.1.7"
65
description = "A small library to backport an OpenStudio OSM model to an older version."
76
authors = ["Julien Marrec <contact@effibem.com>"]
87
readme = "README.md"
@@ -22,6 +21,13 @@ packages = [
2221
{ include = "tests", format = "sdist" },
2322
]
2423

24+
[project.urls]
25+
Homepage = "https://effibem.com"
26+
Documentation = "https://jmarrec.github.io/openstudio-backporter"
27+
Repository = "https://github.com/jmarrec/openstudio-backporter"
28+
Changelog = "https://github.com/jmarrec/openstudio-backporter/blob/main/CHANGELOG.md"
29+
Issues = "https://github.com/jmarrec/openstudio-backporter/issues"
30+
2531
[tool.poetry.dependencies]
2632
python = ">=3.10,<4.0"
2733

0 commit comments

Comments
 (0)