Skip to content

Commit

Permalink
Release v0.9.45
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas Heitzmann Gabrielli <heitzmann@gmail.com>
  • Loading branch information
heitzmann committed Oct 12, 2023
1 parent 57c9ece commit a544b9d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
17 changes: 8 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,20 @@

## Unreleased

## 0.9.45 - 2023-10-12
### Changed
- Use Qhull as an external dependecy instead of installing it ourselves to avoid conflicts.

## 0.9.43 - 2023-10-08
### Added
- `Library.remap` and `Cell.remap` to remap layer and data/text types
- enable tbump [#206](https://github.com/$OWNER/$REPOSITORY/pull/#206)
- add release drafter [#202](https://github.com/$OWNER/$REPOSITORY/pull/#202)
- pin version to python>=3.8 [#205](https://github.com/$OWNER/$REPOSITORY/pull/#205)
- Add typing stub [#185](https://github.com/$OWNER/$REPOSITORY/pull/#185)
- Add deepcopy support [#183](https://github.com/$OWNER/$REPOSITORY/pull/#183)
- Add typing stub
- Add deepcopy support
### Changed
- Raise an error if not both layer and datatype are specified in `Cell.get_polygons` and `Reference.get_polygons`.
- Correct ordering of path ends in `Library::read_oas()` [#196](https://github.com/$OWNER/$REPOSITORY/pull/#196)
- Correct ordering of path ends in `Library::read_oas()`
### Fixed
- Sort `slice` positions when converting from python because the internal implementation expects the coordinates to be sorted.
- Fix outdated pip in CI [#193](https://github.com/$OWNER/$REPOSITORY/pull/#193)
- Fix missing version [#192](https://github.com/$OWNER/$REPOSITORY/pull/#192)
- Sort `slice` positions when converting from python because the internal implementation expects the coordinates to be sorted

## 0.9.42 - 2023-06-14
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion include/gdstk/gdstk.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ LICENSE file or <http://www.boost.org/LICENSE_1_0.txt>
#define __STDC_FORMAT_MACROS 1
#define _USE_MATH_DEFINES

#define GDSTK_VERSION "0.9.44"
#define GDSTK_VERSION "0.9.45"

// If GDSTK_CUSTOM_ALLOCATOR is defined, the user must supply implementations
// for the following dynamic memory management functions:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "gdstk"
version = "0.9.44"
version = "0.9.45"
authors = [{name = "Lucas H. Gabrielli", email = "heitzmann@gmail.com"}]
description = "Python module for creation and manipulation of GDSII files."
readme = "README.md"
Expand Down Expand Up @@ -62,7 +62,7 @@ message_template = "Bump to {new_version}"
tag_template = "v{new_version}"

[tool.tbump.version]
current = "0.9.44"
current = "0.9.45"
regex = '''
(?P<major>\d+)
\.
Expand Down

0 comments on commit a544b9d

Please sign in to comment.