Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
rousan committed May 18, 2021
1 parent a7d9ade commit a49e036
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "multer"
version = "1.2.2"
version = "2.0.0"
description = "An async parser for `multipart/form-data` content-type in Rust."
homepage = "https://github.com/rousan/multer-rs"
repository = "https://github.com/rousan/multer-rs"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
multer = "1.2"
multer = "2"
```

# Basic Example
Expand Down
17 changes: 5 additions & 12 deletions releez.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
version: 1.0.0
checklist:
- name: Checkout develop and sync with remote
- name: Checkout master and sync with remote
type: auto
run:
- git checkout develop
- git push
- git checkout master
- git pull
- name: Check syntax
type: auto
run:
Expand All @@ -13,10 +13,6 @@ checklist:
type: auto
run:
- cargo test --release --features="all"
- name: Start a new release branch
type: auto
run:
- git flow release start "v${VERSION}"
- name: Make sure code is formatted
type: auto
run:
Expand All @@ -30,16 +26,14 @@ checklist:
type: auto
run:
- git add --all && git commit -m "Bump version"
- name: Finish release branch
- name: Create a release tag
type: auto
run:
- git flow release finish -s "v${VERSION}"
- git tag "v${VERSION}" -a
- name: Push branches and tags to Github
type: auto
run:
- git checkout master
- git push origin master
- git push origin develop
- git push --tags
- name: Edit tag on Github
type: manual
Expand All @@ -50,4 +44,3 @@ checklist:
confirm: Are you sure to publish it to crates.io?
run:
- cargo publish
- git checkout develop

0 comments on commit a49e036

Please sign in to comment.