From b1fd25f327c93e732cdac28ad6dbd8307ced00b7 Mon Sep 17 00:00:00 2001 From: Adam Perkowski Date: Tue, 3 Dec 2024 21:33:53 +0100 Subject: [PATCH] chore(release): prepare for v0.1.6-pre1 --- CHANGELOG.md | 7 ++++++- Cargo.lock | 4 ++-- Cargo.toml | 3 ++- src/tui.rs | 3 +++ 4 files changed, 13 insertions(+), 4 deletions(-) create mode 100644 src/tui.rs diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fda5ad..5aff2b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,16 @@ All notable changes to nvrs will be documented in this file. -## [upstream] +## [0.1.6-pre1] - 2024-12-03 + +### 🚀 Features + +- `--list-sources` command ([442c06f](https://github.com/adamperkowski/nvrs/commit/442c06f0e56f4adcc0c2ad44d042997cb088a930)) ### ⚙️ Refactoring - (*verfiles, config*) saving & loading improvements ([81d7efd](https://github.com/adamperkowski/nvrs/commit/81d7efd24b9b425f59bec1cdbb588bc25ed433cb)) +- split features & binaries ([4acd98e](https://github.com/adamperkowski/nvrs/commit/4acd98e5d2c5df0845c6bd512cb40f705da9361e)) ### 📚 Documentation diff --git a/Cargo.lock b/Cargo.lock index aa3ea28..ab943d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -986,7 +986,7 @@ dependencies = [ [[package]] name = "nvrs" -version = "0.1.5" +version = "0.1.6-pre1" dependencies = [ "clap", "colored", diff --git a/Cargo.toml b/Cargo.toml index a084417..88309d7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nvrs" -version = "0.1.5" +version = "0.1.6-pre1" authors = ["Adam Perkowski "] license = "MIT" description = "🚦 fast new version checker for software releases 🦀" @@ -21,6 +21,7 @@ include = [ [features] nvrs_cli = ["clap", "colored", "futures"] +nvrs_tui = [] default = ["aur", "github", "gitlab"] aur = [] github = [] diff --git a/src/tui.rs b/src/tui.rs new file mode 100644 index 0000000..6c905a6 --- /dev/null +++ b/src/tui.rs @@ -0,0 +1,3 @@ +fn main() { + println!("nvrs TUI is not implemented yet."); +}