Skip to content

Commit 3ccd094

Browse files
committed
Version 1.7.0
1 parent 2a56972 commit 3ccd094

File tree

4 files changed

+31
-6
lines changed

4 files changed

+31
-6
lines changed

.readthedocs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
version: 2
22

33
build:
4-
os: ubuntu-22.04
4+
os: ubuntu-24.04
55
tools:
6-
python: "3.11"
6+
python: "3.12"
77

88
sphinx:
99
configuration: docs/conf.py

CHANGELOG.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.7.0] (2026-02-25)
8+
9+
### Added
10+
11+
- Bumped package version to 1.7.0 in `setup.py`.
12+
13+
### Changed
14+
15+
- Faster normalisation by vectorising the python loops (#22)
16+
* faster vectorised rotation
17+
* vectorise the global rotation too
18+
- Fix for tests in Github Actions (#21)
19+
- Unique normalization and small fix (#20)
20+
* Added a unique normalization method that is invariant to size, rotation and starting point.
21+
* Added a small fix to the existing normalization method that was not fully invariant to rotation.
22+
- Additional test changes to handle the new normalization method.
23+
24+
## [1.6.0-2] (2023-08-23)
25+
26+
### Changed
27+
28+
- Packaging and metadata fixes.
29+
730
## [1.6.0] (2021-12-09)
831

932
### Added
@@ -109,7 +132,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
109132

110133
- Initial release
111134

112-
[Unreleased]: https://github.com/hbldh/pyefd/compare/v1.6.0...HEAD
135+
[Unreleased]: https://github.com/hbldh/pyefd/compare/1.7.0...HEAD
136+
[1.7.0]: https://github.com/hbldh/pyefd/compare/v1.6.0-2...1.7.0
137+
[1.6.0-2]: https://github.com/hbldh/pyefd/compare/v1.6.0...v1.6.0-2
113138
[1.6.0]: https://github.com/hbldh/pyefd/compare/v1.5.1...v1.6.0
114139
[1.5.1]: https://github.com/hbldh/pyefd/compare/v1.4.1...v1.5.1
115140
[1.4.1]: https://github.com/hbldh/pyefd/compare/v1.4.0...v1.4.1

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@
6262
# built documents.
6363
#
6464
# The short X.Y version.
65-
version = "1.6.0"
65+
version = "1.7.0"
6666
# The full version, including alpha/beta/rc tags.
67-
release = "1.6.0"
67+
release = "1.7.0"
6868

6969
# The language for content autogenerated by Sphinx. Refer to documentation
7070
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
EMAIL = "henrik.blidh@nedomkull.com"
2323
AUTHOR = "Henrik Blidh"
2424
REQUIRES_PYTHON = ">=2.7.10"
25-
VERSION = "1.6.0"
25+
VERSION = "1.7.0"
2626

2727
REQUIRED = ["numpy>=1.7.0"]
2828

0 commit comments

Comments
 (0)