Skip to content

Commit

Permalink
Bump version: 1.0.0 → 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
inklesspen committed Sep 10, 2024
1 parent 66a3700 commit f7e54d6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.1.0 (2024-09-10)

- Depend on cffi 1.17.1 to take advantage of the new file-like object support in emit_c_code.

## 1.0.0 (2024-08-19)

- First release on PyPI.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'cffi-buildtool',
'c',
version: '1.0.0',
version: '1.1.0',
)

py = import('python').find_installation(pure: true)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ testpaths = ["tests"]
allow_dirty = false
commit = true
commit_args = ""
current_version = "1.0.0"
current_version = "1.1.0"
ignore_missing_files = false
ignore_missing_version = false
message = "Bump version: {current_version} → {new_version}"
Expand Down
2 changes: 1 addition & 1 deletion src/cffi_buildtool/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.0"
__version__ = "1.1.0"

0 comments on commit f7e54d6

Please sign in to comment.