diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8f19961..b596a4f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 91c85d9..8ee6993 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -227,7 +227,7 @@ checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" [[package]] name = "postman2openapi" -version = "0.1.0" +version = "1.0.0-beta" dependencies = [ "anyhow", "atty", diff --git a/Cargo.toml b/Cargo.toml index b5ec294..0cbb26e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] build = "build.rs" readme = "README.md" diff --git a/src/main.rs b/src/main.rs index 34fd667..9f27abb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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 ") .arg( Arg::with_name("output")