Skip to content

Commit

Permalink
Merge branch 'main' into nnyyxxxx/main
Browse files Browse the repository at this point in the history
  • Loading branch information
adamperkowski committed Nov 27, 2024
2 parents c10a0c3 + ca96da8 commit 22f9cfc
Show file tree
Hide file tree
Showing 23 changed files with 1,378 additions and 608 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,20 @@ on:
branches: ["main"]
paths:
- '**/*.rs'
- 'src/**'
- 'src/**/*'
- 'Cargo.toml'
- 'Cargo.lock'
pull_request:
paths:
- '**/*.rs'
- 'src/**'
- 'src/**/*'
- 'Cargo.toml'
- 'Cargo.lock'
workflow_dispatch:

env:
CARGO_TERM_COLOR: always

jobs:
check:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -45,3 +48,16 @@ jobs:
cargo build --verbose
cargo build --release --verbose
test:
runs-on: ubuntu-latest
needs: build

steps:
- uses: actions/checkout@v4

- name: Test
run: |
cargo test --lib
cargo test --lib --release
cargo test --doc
cargo test --doc --release
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
newver.json
oldver.json
keyfile.toml
*_old
*.old
*.gif
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,33 @@

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

## [0.1.4] - 2024-11-25

### 🚀 Features

- (*take*) `ALL` functionality ([0ee83eb](https://github.com/adamperkowski/nvrs/commit/0ee83eb785f939780c8e07920c1f98a8a258d158))

### 🐛 Bug Fixes

- (*verfile*) allow missing gitref & url ([b93216d](https://github.com/adamperkowski/nvrs/commit/b93216d5146a672897e11938668e05cfa859cfac))
- `--nuke` not working ([15b75d9](https://github.com/adamperkowski/nvrs/commit/15b75d99667a4c52d0d9b093704aa02ca4d35e3e))

### ⚙️ Refactoring

- (*codebase*) [**breaking**] move internal logic to `lib` ([#4](https://github.com/adamperkowski/nvrs/issues/4)) ([c0021f0](https://github.com/adamperkowski/nvrs/commit/c0021f0a4e02791802fba9ba6bca5486f825ee4e))

### 📚 Documentation

- (*git-cliff*) add `UI/UX` ([42727ad](https://github.com/adamperkowski/nvrs/commit/42727ad6bd020ecee06e93017e7e5b68851c01d3))
- (*config*) fix the package name (alpm -> mkinitcpio) ([1327516](https://github.com/adamperkowski/nvrs/commit/132751692941f5e1e2cce188d545f3ee421dad46))
- better banner ([a4718b6](https://github.com/adamperkowski/nvrs/commit/a4718b60505d26c2e262b70d77160b475b8f2348))
- (*dependabot*) change cargo commit message ([90d50ab](https://github.com/adamperkowski/nvrs/commit/90d50ab0fd6cd4964408796e2f75affeb539923b))
- 🚦 ([f2e22b6](https://github.com/adamperkowski/nvrs/commit/f2e22b6c8daece310080a8e32d183e0f6ef3e3f0))

### 🧩 UI/UX

- (*output*) print out `NONE` take information ([71cb36f](https://github.com/adamperkowski/nvrs/commit/71cb36f913035d484bf26d8a2c3430132ea176ba))

## [0.1.3] - 2024-11-18

### 🐛 Bug Fixes
Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

Thank you for considering contributing to [nvrs](https://github.com/adamperkowski/nvrs) ❤️

If, while viewing the code, you find any parts unclear or unexplained, please [open an issue](https://github.com/adamperkowski/nvrs/issues/new/choose) with a documentation request.

Note that we have a [Code of Conduct](./CODE_OF_CONDUCT.md). Please follow it in all your interactions with the project.

## Workflow
Expand Down
Loading

0 comments on commit 22f9cfc

Please sign in to comment.