Skip to content

Commit

Permalink
Release 0.0.3 prep (#30)
Browse files Browse the repository at this point in the history
* update changelog

* remove the v before version number

* Bump version: 0.0.2 → 0.0.3
  • Loading branch information
rohitsanj authored Sep 7, 2022
1 parent 4289598 commit 9c8a74b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.2
current_version = 0.0.3
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize =
{major}.{minor}.{patch}
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.0.3] - 2022-09-02
### Fixed
- Fix `SessionRequestDetails.generate_file_request` handling of file paths with folders

### Added
- Add ability to delete/add cells with NoteableClient


## [0.0.2] - 2022-08-02
### Changed
- Change `name` in pyproject.toml from `origami` to `noteable-origami`
Expand Down
8 changes: 4 additions & 4 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ git checkout main
git pull

# Create the release branch
git checkout -b release/vX.Y.Z
git checkout -b release/X.Y.Z
```

## 2. Update the changelog
Expand Down Expand Up @@ -37,7 +37,7 @@ bump2version [major|minor|patch]

```shell
# Push the release branch
git push -u origin release/vX.Y.Z
git push -u origin release/X.Y.Z
```

### 5. Create pull request and merge
Expand All @@ -52,10 +52,10 @@ git checkout main
git pull

# Tag the release
git tag -s vX.Y.Z -m "Release vX.Y.Z"
git tag -s X.Y.Z -m "Release X.Y.Z"

# Push the tag
git push origin vX.Y.Z
git push origin X.Y.Z
```

### 7. Update the release in GitHub
Expand Down
2 changes: 1 addition & 1 deletion origami/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "0.0.2"
version = "0.0.3"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[tool.poetry]
name = "noteable-origami"
version = "0.0.2"
version = "0.0.3"
description = "The Noteable API interface"
authors = ["Matt Seal <[email protected]>"]
maintainers = ["Matt Seal <[email protected]>"]
Expand Down

0 comments on commit 9c8a74b

Please sign in to comment.