Skip to content

Commit

Permalink
build(0.3.0): release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Joxit committed Jan 14, 2021
1 parent b0f4277 commit d063538
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Standard Version
- name: Build image and push
uses: docker/build-push-action@v2
with:
context: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Standard Version
- name: Build image and push
uses: docker/build-push-action@v2
with:
context: .
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "kokai"
version = "0.2.0"
version = "0.3.0"
authors = ["Jones Magloire @Joxit"]
description = "Create changelog for your releases and full changelog for your projects using Conventional Commits."
edition = "2018"
license = "MIT"
repository = "https://github.com/Joxit/kokai"
homepage = "https://github.com/Joxit/kokai"
homepage = "https://joxit.dev/kokai/"
documentation = "https://docs.rs/kokai/"
readme = "README.md"
keywords = ["cli", "release", "changelog", "git", "conventional-commits"]
Expand Down
25 changes: 16 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Kokai allows you to create changelog for your releases and full changelog for yo
## All kokai commands

```
kokai 0.2.0
kokai 0.3.0
USAGE:
kokai <SUBCOMMAND>
Expand All @@ -22,15 +22,17 @@ FLAGS:
-V, --version Prints version information
SUBCOMMANDS:
changelog Create a full changelog of your project
help Prints this message or the help of the given subcommand(s)
release Create a release changelog for a specified tag
changelog Create a full changelog of your project
completion Generate autocompletion file for your shell
help Prints this message or the help of the given subcommand(s)
release Create a release changelog for a specified tag
```

### Release

```
kokai-release 0.2.0
kokai-release 0.3.0
Jones Magloire @Joxit
Create a release changelog for a specified tag
Expand All @@ -39,14 +41,19 @@ USAGE:
FLAGS:
-h, --help Prints help information
--no-emoji Remove emojis from headers
--tag-from-ref Get the tag of the ref commit and use it as a release name. This is like `git describe --tags
--exact-match`
-V, --version Prints version information
OPTIONS:
--name <name> Explicit name for the release. Useful when tag is a commit or HEAD
--ref <ref> Create a release changelog from previous tag until this ref. Can be a tag, commit hash or
branch
--add-links <add-links> Add links to commits/issues/pr with specified url format (github/gitlab...). For
commits only using github url format, use github:commits. For gitlab with commits and
issues use gitlab:commits,issues
--git-url <git-url> The git url of the project. Should be a url using http protocol for links
--name <name> Explicit name for the release. Useful when tag is a commit or HEAD
--ref <ref> Create a release changelog from previous tag until this ref. Can be a tag, commit
hash or branch
ARGS:
<repository> Path to the git repository [default: .]
Expand All @@ -55,7 +62,7 @@ ARGS:
### Changelog

```
kokai-changelog 0.2.0
kokai-changelog 0.3.0
Jones Magloire @Joxit
Create a full changelog of your project
Expand Down
1 change: 0 additions & 1 deletion src/parser/conventional.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ use crate::format::formatters::Markdown;
use crate::format::FormatOptions;
use crate::git::Commit;
use regex::Regex;
use std::ops::Add;

lazy_static! {
static ref SUMMARY_REGEX: Regex =
Expand Down

0 comments on commit d063538

Please sign in to comment.