From fec03d26097294a050ae1539742571e945057d1a Mon Sep 17 00:00:00 2001 From: Simon Rupf Date: Sat, 3 Feb 2024 10:27:40 +0100 Subject: [PATCH] bumped rust version to 1.72 to gain access to stable feature stdsimd fixes aarch64 builds --- .github/workflows/lint.yml | 2 +- .github/workflows/release.yml | 2 +- CHANGELOG.md | 5 +++++ Cargo.lock | 2 +- Cargo.toml | 4 ++-- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d63c3c9..0eccf8b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,7 +7,7 @@ on: branches: '*' pull_request: env: - RUST_VERSION: 1.70.0 + RUST_VERSION: 1.72.0 jobs: check: runs-on: ubuntu-latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index be57074..a95aded 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,7 @@ on: push: tags: '[0-9]+.*' env: - RUST_VERSION: 1.70.0 + RUST_VERSION: 1.72.0 jobs: create-release: runs-on: ubuntu-latest diff --git a/CHANGELOG.md b/CHANGELOG.md index 981aff1..198e401 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Change Log of Atari Portfolio address file reader ================================================= +Version 0.2.3 / 2024-02-03 +-------------------------- +- bumped rust version to 1.72 to gain access to stable feature stdsimd for + aarch64 builds, like on MacOS + Version 0.2.2 / 2024-02-03 -------------------------- - switched from tui 0.19.0 (unmaintained) to ratatui 0.26.0 (maintained fork) diff --git a/Cargo.lock b/Cargo.lock index 0f503be..6f16992 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -387,7 +387,7 @@ checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" [[package]] name = "pofo_adr" -version = "0.2.2" +version = "0.2.3" dependencies = [ "chrono", "codepage-437", diff --git a/Cargo.toml b/Cargo.toml index 510deb1..e2059dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "pofo_adr" description = "command line reader for the Atari Portfolio address file format." -version = "0.2.2" +version = "0.2.3" authors = ["Simon Rupf "] edition = "2021" license = "GPL-3.0" repository = "https://github.com/simonrupf/convert2json" keywords = ["cli", "atari"] categories = ["command-line-utilities", "encoding"] -rust-version = "1.66" +rust-version = "1.72" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html