diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5109e9e..33cf1a7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,10 +66,4 @@ jobs: push: true tags: | joxit/kokai:latest - joxit/kokai:${{steps.current-tag.outputs.tag}} - - name: Update repo description - uses: peter-evans/dockerhub-description@v2 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - repository: joxit/kokai \ No newline at end of file + joxit/kokai:${{steps.current-tag.outputs.tag}} \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 9ca0838..81aa79e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kokai" -version = "0.3.0" +version = "0.3.1" authors = ["Jones Magloire @Joxit"] description = "Create changelog for your releases and full changelog for your projects using Conventional Commits." edition = "2018" diff --git a/README.md b/README.md index c3b521d..ae9a97c 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Kokai allows you to create changelog for your releases and full changelog for yo ## All kokai commands ``` -kokai 0.3.0 +kokai 0.3.1 USAGE: kokai @@ -32,7 +32,7 @@ SUBCOMMANDS: ### Release ``` -kokai-release 0.3.0 +kokai-release 0.3.1 Jones Magloire @Joxit Create a release changelog for a specified tag @@ -62,7 +62,7 @@ ARGS: ### Changelog ``` -kokai-changelog 0.3.0 +kokai-changelog 0.3.1 Jones Magloire @Joxit Create a full changelog of your project diff --git a/src/parser/conventional.rs b/src/parser/conventional.rs index b8a8c3b..538ac00 100644 --- a/src/parser/conventional.rs +++ b/src/parser/conventional.rs @@ -114,9 +114,9 @@ impl Markdown for ConventionalCommit { } else { String::new() }; - let small_id = self.id.chars().take(8).collect::().code(); + let small_id = self.id.chars().take(8).collect::(); let id = if let Some(commit_url) = &opts.commit_url(&self.id) { - small_id.link(commit_url) + small_id.code().link(commit_url) } else { small_id };