Skip to content

Commit

Permalink
Bump version to v0.3.0 (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
emakryo committed Nov 24, 2021
1 parent c52aef9 commit 6ad0994
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

- Use stable rust

## [0.3.0] 2021-11-24

### Changed
- Add subcommands (`add`/`rm`/`show`) to edit dependencies.
- Remove `depdends` subcommand.
- Update cargo dependencies.
- Update pyo3 to 0.15.

## [0.2.0] 2021-01-03

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustdef"
version = "0.2.0"
version = "0.3.0"
authors = ["Ryosuke Kamesawa <emak.ryo@gmail.com>"]
edition = "2018"

Expand All @@ -9,9 +9,6 @@ edition = "2018"
name = "rustdef"
crate-type = ["cdylib", "rlib"]

# [build-dependencies]
# glob = "0.3.0"
# zip = "0.5.11"

[dependencies]
quote = "1.0.10"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ requires-dist = [
# Poetry is used for development
[tool.poetry]
name = "rustdef"
version = "0.2.0"
version = "0.3.0"
description = ""
authors = ["Ryosuke Kamesawa <emak.ryo@gmail.com>"]

Expand Down
2 changes: 1 addition & 1 deletion rustdef/magic.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def create_template(self):
f.write("\n" "[lib]\n" 'crate-type = ["cdylib"]\n\n')

# numpy compatible version
pyo3 = ["pyo3@0.15.0", "--features", "extension-module"]
pyo3 = ["pyo3@0.15.1", "--features", "extension-module"]
try:
self.add_dependencies(pyo3)
except subprocess.CalledProcessError as e:
Expand Down

0 comments on commit 6ad0994

Please sign in to comment.