Skip to content

Commit

Permalink
Bumping version to 1.0.0-beta
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Swiber <[email protected]>
  • Loading branch information
kevinswiber committed Aug 24, 2020
1 parent 3e86cfe commit 194cec5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
# branches:
# - ag/release
tags:
- '[0-9]+.[0-9]+.[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+**'
jobs:
create-release:
name: create-release
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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Convert a Postman collection to an OpenAPI definition. "
homepage = "https://github.com/kevinswiber/postman2openapi"
repository = "https://github.com/kevinswiber/postman2openapi"
license = "Apache-2.0"
version = "0.1.0"
version = "1.0.0-beta"
authors = ["Kevin Swiber <[email protected]>"]
build = "build.rs"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::io::{stdin, Read};

fn main() {
let mut app = App::new("postman2openapi")
.version("0.1.0")
.version("1.0.0-beta")
.author("Kevin Swiber <[email protected]>")
.arg(
Arg::with_name("output")
Expand Down

0 comments on commit 194cec5

Please sign in to comment.