Skip to content

Commit

Permalink
Prepare the next release.
Browse files Browse the repository at this point in the history
  • Loading branch information
nekitdev committed Oct 3, 2022
1 parent c307b53 commit 05c3020
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

<!-- changelog: start -->

## 0.2.0 (2022-10-03)

### Features

- Rename `convert_optional -> wrap_optional`, add `extract` method.
This allows users to defer back to `Optional[T]`, along with wrapping
`Optional[T]` into `Option[T]` in a clear and concise way.
([#1](https://github.com/nekitdev/wraps/pull/1))

## 0.1.0 (2022-09-09)

Initial release.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Or by directly specifying it in the configuration like so:

```toml
[tool.poetry.dependencies]
wraps = "^0.1.0"
wraps = "^0.2.0"
```

Alternatively, you can add it directly from the source:
Expand Down
3 changes: 0 additions & 3 deletions changes/1.feature.md

This file was deleted.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wraps"
version = "0.1.0"
version = "0.2.0"
description = "Meaningful and safe wrapping types."
authors = ["nekitdev"]
license = "MIT"
Expand Down Expand Up @@ -127,9 +127,9 @@ warn_unreachable = true
warn_redundant_casts = true
warn_unused_ignores = false # compatibility

[tool.changelog]
[tool.changelogging]
name = "wraps"
version = "0.1.0"
version = "0.2.0"
url = "https://github.com/nekitdev/wraps"
directory = "changes"
output = "CHANGELOG.md"
Expand Down
2 changes: 1 addition & 1 deletion wraps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__title__ = "wraps"
__author__ = "nekitdev"
__license__ = "MIT"
__version__ = "0.1.0"
__version__ = "0.2.0"

from wraps.errors import Panic, panic
from wraps.future import Future, wrap_future
Expand Down

0 comments on commit 05c3020

Please sign in to comment.