From faa59037f43f4d85cf5ce884c2cd4206aa93001c Mon Sep 17 00:00:00 2001 From: Simon Rupf Date: Sat, 2 Mar 2024 09:36:38 +0100 Subject: [PATCH] bumped rust version to 1.74 for clap 4.5.1, used in rpm packaging --- .github/workflows/release.yml | 2 +- CHANGELOG.md | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 6 +++--- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a95aded..02f3f46 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,7 @@ on: push: tags: '[0-9]+.*' env: - RUST_VERSION: 1.72.0 + RUST_VERSION: 1.74.0 jobs: create-release: runs-on: ubuntu-latest diff --git a/CHANGELOG.md b/CHANGELOG.md index ecb9fcc..9d243fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Change Log of Atari Portfolio address file reader ================================================= +Version 0.2.5 / 2024-03-02 +-------------------------- +- bumped rust version to 1.74 for clap 4.5.1, used in rpm packaging + Version 0.2.4 / 2024-03-02 -------------------------- - bumped chrono from 0.4.33 to 0.4.34 diff --git a/Cargo.lock b/Cargo.lock index c2b2e26..05db561 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -387,7 +387,7 @@ checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" [[package]] name = "pofo_adr" -version = "0.2.4" +version = "0.2.5" dependencies = [ "chrono", "codepage-437", diff --git a/Cargo.toml b/Cargo.toml index 5483e9f..18f0c63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,21 +1,21 @@ [package] name = "pofo_adr" description = "command line reader for the Atari Portfolio address file format." -version = "0.2.4" +version = "0.2.5" 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.72" +rust-version = "1.74" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] chrono = "0.4.34" codepage-437 = "0.1.0" -crossterm = { version = "=0.27.0", default-features = false, features = ["windows", "events"] } # pin to the version depended on by tui +crossterm = { version = "=0.27.0", default-features = false, features = ["windows", "events"] } # pin to the version depended on by ratatui ratatui = { version = "0.26.1", default-features = false, features = ['crossterm'] } [profile.release]