diff --git a/CHANGELOG.md b/CHANGELOG.md index 82523ba..c72c90c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [0.3.1](https://github.com/mrl5/vulner/compare/v0.3.0...v0.3.1) (2022-02-26) + + +### Bug Fixes + +* adapter for apache http server ([e28c04a](https://github.com/mrl5/vulner/commit/e28c04ac1b08ccd6e2c89e692e421ba97dcaa970)) + + + # [0.3.0](https://github.com/mrl5/vulner/compare/v0.2.0...v0.3.0) (2022-02-22) diff --git a/Cargo.lock b/Cargo.lock index 945e96a..1849431 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -225,7 +225,7 @@ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" [[package]] name = "cpe-tag" -version = "0.1.1" +version = "0.1.2" dependencies = [ "grep", "jsonschema", diff --git a/crates/cpe-tag/Cargo.toml b/crates/cpe-tag/Cargo.toml index 0da05a0..c885844 100644 --- a/crates/cpe-tag/Cargo.toml +++ b/crates/cpe-tag/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cpe-tag" -version = "0.1.1" +version = "0.1.2" authors = ["mrl5"] edition = "2021" description = "Generates valid NVD CPEs" diff --git a/package.json b/package.json index faa23a3..f43fb73 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vulner", - "version": "0.3.0", + "version": "0.3.1", "description": "Vulner internal scripts", "license": "MPL-2.0", "author": "mrl5", diff --git a/scripts/release.sh b/scripts/release.sh index 1aac68d..ff2208f 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -18,7 +18,7 @@ main() { yarn install --frozen-lockfile git checkout -b $(uuidgen --random) bump_version - git_push $remote + git_prep_push $remote } cleanup() { @@ -49,15 +49,17 @@ bump_version() { cargo workspaces version \ --include-merged-tags \ --no-git-commit $recommended_bump + git add -u crates/ Cargo.lock yarn version --$recommended_bump } -git_push() { +git_prep_push() { local remote="$1" local tag=v$(get_current_version) local branch=release-$tag git branch -m $branch - git push $remote $branch $tag + echo "remeber to: + git push $remote $branch $tag" } get_current_version() {