Skip to content

Commit

Permalink
πŸ”– Update version to 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tgotwig committed Jan 14, 2024
1 parent 2816f55 commit 3d93360
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
--url='https://github.com/tgotwig/vidmerger/releases/download/${{ steps.get_version.outputs.version }}/vidmerger-linux.tar.gz' \
tgotwig/homebrew-linux-vidmerger/vidmerger
# todo: fix hard coded version number `0.3.1`
# todo: fix hard coded version number `0.3.2`
# todo: upload `vidmerger.exe` to github
release-windows-chocolatey:
runs-on: windows-latest
Expand All @@ -133,7 +133,7 @@ jobs:
echo '<package>' >> vidmerger.nuspec
echo ' <metadata>' >> vidmerger.nuspec
echo ' <id>vidmerger</id>' >> vidmerger.nuspec
echo ' <version>0.3.1</version>' >> vidmerger.nuspec
echo ' <version>0.3.2</version>' >> vidmerger.nuspec
echo ' <title>vidmerger</title>' >> vidmerger.nuspec
echo ' <authors>Thomas Gotwig</authors>' >> vidmerger.nuspec
echo ' <projectUrl>https://github.com/tgotwig/vidmerger</projectUrl>' >> vidmerger.nuspec
Expand Down Expand Up @@ -163,4 +163,4 @@ jobs:
- name: Create chocolatey package
run: choco pack vidmerger.nuspec
- name: Publish on chocolatey
run: choco push vidmerger.0.3.1.nupkg -s https://push.chocolatey.org/ --api-key=${{ secrets.CHOCO_API_KEY }}
run: choco push vidmerger.0.3.2.nupkg -s https://push.chocolatey.org/ --api-key=${{ secrets.CHOCO_API_KEY }}
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## πŸŽ‰ [Unreleased]
## πŸŽ‰ [0.3.2] - 2024-01-14

### Added

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["tgotwig <thomas@tgotwig.dev>"]
edition = "2021"
name = "vidmerger"
version = "0.3.1"
version = "0.3.2"

[profile.release]
codegen-units = 1
Expand Down
4 changes: 2 additions & 2 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ tasks:
publish_dockerhub:
cmds:
- docker build --no-cache -t vidmerger .
- docker tag vidmerger tgotwig/vidmerger:0.3.1
- docker push tgotwig/vidmerger:0.3.1
- docker tag vidmerger tgotwig/vidmerger:0.3.2
- docker push tgotwig/vidmerger:0.3.2
- docker tag vidmerger tgotwig/vidmerger
- docker push tgotwig/vidmerger
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub struct Cli {
impl Cli {
pub fn init() -> Self {
let matches = Command::new("vidmerger")
.version("0.3.1")
.version("0.3.2")
.author("Thomas Gotwig")
.about("A wrapper around ffmpeg which simplifies merging multiple videos 🎞 Everything in between the first `-` till the fill extension of the input files will be used as chapter titles πŸ“–.")
.arg(Arg::new("TARGET_DIR")
Expand Down

0 comments on commit 3d93360

Please sign in to comment.