Skip to content

Commit

Permalink
chore: Merge branch 'release/v0.1.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuthor committed Jan 17, 2024
2 parents be87b18 + 5681c52 commit ce44dc4
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,21 @@ jobs:
components: rustfmt, clippy

- name: Set KMS version
if: inputs.kms_version
if: inputs.kms_version && contains(runner.os, 'Linux')
run: |
sed -i "s/4.11.0/${VERSION}/g" Cargo.toml
sed -i "s/4.11.0/${VERSION}/g" build.rs
env:
VERSION: ${{ inputs.kms_version }}

- name: Set KMS version
if: inputs.kms_version && contains(runner.os, 'Mac')
run: |
sed -i '' "s/4.11.0/${VERSION}/g" Cargo.toml
sed -i '' "s/4.11.0/${VERSION}/g" build.rs
env:
VERSION: ${{ inputs.kms_version }}

- name: Install prerequisites
run: ${{ matrix.prerequisites }}

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [0.1.4] - 2024-01-17

### Ci

- Macos sed...

## [0.1.3] - 2024-01-17

### Ci
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kms_gui"
version = "0.1.3"
version = "0.1.4"
edition = "2021"


Expand Down

0 comments on commit ce44dc4

Please sign in to comment.