Skip to content

Commit

Permalink
chore: 🔖 Update version to 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tgotwig committed Jan 26, 2023
1 parent fc78824 commit 09105f8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 26 deletions.
27 changes: 6 additions & 21 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,11 @@ jobs:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: |
### Added
- `skip-wait` which skips the wait time for reading
- **FPS Changer** which detects different fps values and scales down to the lowest number, or an fps value specified via `--fps`, this feature can also be skipped via `skip-fps-changer`. None of the original videos will be deleted, instead it generates new ones from the originals in an temporary folder and merges with those
### Changed
- Set all `ffmpeg` supported video and audio formats as default
- Make binaries tiny: [johnthagen/min-sized-rust](https://github.com/johnthagen/min-sized-rust)
- Make logs short and consistent
- Panic with error message from ffmpeg if something goes wrong
### Removed
- Remove `--preview`
- Remove `--scale`
### Fixed
- Works now with folder names which starts with a dot
- Print files from FPS Changer in correct order
- Merge files in correct order
- Fix wrong fps detection for floating point numbers
draft: true
prerelease: false

Expand Down Expand Up @@ -130,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.0`
# todo: fix hard coded version number `0.3.1`
# todo: upload `vidmerger.exe` to github
release-windows-chocolatey:
runs-on: windows-latest
Expand All @@ -148,7 +133,7 @@ jobs:
echo '<package>' >> vidmerger.nuspec
echo ' <metadata>' >> vidmerger.nuspec
echo ' <id>vidmerger</id>' >> vidmerger.nuspec
echo ' <version>0.3.0</version>' >> vidmerger.nuspec
echo ' <version>0.3.1</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 @@ -178,4 +163,4 @@ jobs:
- name: Create chocolatey package
run: choco pack vidmerger.nuspec
- name: Publish on chocolatey
run: choco push vidmerger.0.3.0.nupkg -s https://push.chocolatey.org/ --api-key=${{ secrets.CHOCO_API_KEY }}
run: choco push vidmerger.0.3.1.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.1] - 2023-01-26

### Fixed

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.0"
version = "0.3.1"

[profile.release]
codegen-units = 1
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ publish-choco:

publish-dockerhub:
docker build --no-cache -t vidmerger .
docker tag vidmerger tgotwig/vidmerger:0.3.0
docker push tgotwig/vidmerger:0.3.0
docker tag vidmerger tgotwig/vidmerger:0.3.1
docker push tgotwig/vidmerger:0.3.1
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.0")
.version("0.3.1")
.author("Thomas Gotwig")
.about("A wrapper around ffmpeg which simlifies merging multiple videos 🎞")
.arg(Arg::new("TARGET_DIR")
Expand Down

0 comments on commit 09105f8

Please sign in to comment.