From 4c0cca925be1b9d8b1d5434889ab99d09938c555 Mon Sep 17 00:00:00 2001 From: Josh Wilson Date: Mon, 20 Jul 2020 09:19:13 +0200 Subject: [PATCH] docs(readme): add initial readme statement --- README.md | 4 ++++ package.json | 9 +++++++++ 2 files changed, 13 insertions(+) create mode 100644 README.md create mode 100644 package.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..3c5c24f --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Auto Rust Version Bumper + +Using [conventional commits]() this action will automatically detect the appropriate version for a release, update the changelog and Cargo.toml and push the release to your master branch. + diff --git a/package.json b/package.json new file mode 100644 index 0000000..c589e09 --- /dev/null +++ b/package.json @@ -0,0 +1,9 @@ +{ + "name": "auto-rust-version-bumper", + "version": "1.0.0", + "description": "Automatically bump rust crate's changelog + version based upon conventional commits.", + "main": "index.js", + "repository": "https://github.com/joshuef/aut-rust-version-bumper", + "author": "Josh Wilson", + "license": "MIT" +}