Skip to content

Commit

Permalink
Prepare 0.7.1 (#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeniy-r authored Aug 28, 2024
1 parent 98926c5 commit 40d72b5
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 15 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
with:
files: pg_datanymizer-*
draft: true
body_path: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -65,20 +64,20 @@ jobs:
with:
files: pg_datanymizer-*
draft: true
body_path: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

release-darwin:
runs-on: macos-11
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
- name: Build
run: |
cargo build --release --target x86_64-apple-darwin
rustup target add x86_64-apple-darwin
OPENSSL_DIR=/opt/homebrew/opt/openssl@3/ cargo build --release --target x86_64-apple-darwin
cp target/x86_64-apple-darwin/release/pg_datanymizer ./pg_datanymizer
chmod +x pg_datanymizer
tar -czf pg_datanymizer-darwin-x86_64.tar.gz pg_datanymizer
Expand All @@ -87,7 +86,6 @@ jobs:
with:
files: pg_datanymizer-*
draft: true
body_path: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -108,7 +106,6 @@ jobs:
with:
files: pg_datanymizer-*
draft: true
body_path: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### 🛠 Fixed

## [v0.7.0] - 2024-08-28
## [v0.7.1] - 2024-08-28
### 🚀 Added
- Ignore computed columns (previously they would cause an error). [#202](https://github.com/datanymizer/datanymizer/pull/202)
([@gregwebs](https://github.com/gregwebs))
Expand All @@ -31,6 +31,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix escaping multibyte strings [#219](https://github.com/datanymizer/datanymizer/pull/219)
([@dakulov](https://github.com/dakulov), [@kontsevoye](https://github.com/kontsevoye))

## [v0.7.0] - 2024-08-28

The release was yanked.

## [v0.6.0] - 2022-08-09
### 🚀 Added
- Add the ability to select verbose logging features [#184](https://github.com/datanymizer/datanymizer/pull/184)
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ We support only the last released version and the version from the `main` branch
| Version | Supported |
|---------| ------------------ |
| main | :white_check_mark: |
| 0.7.0 | :white_check_mark: |
| < 0.7.0 | :x: |
| 0.7.1 | :white_check_mark: |
| < 0.7.1 | :x: |

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion cli/pg_datanymizer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pg_datanymizer"
version = "0.7.0"
version = "0.7.1"
authors = ["Aleksandr Kirillov <[email protected]>"]
edition = "2021"
description = "Powerful database anonymizer with flexible rules"
Expand Down
2 changes: 1 addition & 1 deletion datanymizer_dumper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "datanymizer_dumper"
version = "0.7.0"
version = "0.7.1"
authors = ["Aleksandr Kirillov <[email protected]>", "Evgeniy Rashchepkin <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion datanymizer_engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "datanymizer_engine"
version = "0.7.0"
version = "0.7.1"
authors = ["Aleksandr Kirillov <[email protected]>", "Evgeniy Rashchepkin <[email protected]>"]
edition = "2021"

Expand Down

0 comments on commit 40d72b5

Please sign in to comment.