mirror of
https://gitlab.com/khumba/nvd.git
synced 2024-11-13 00:19:28 +01:00
Bump to v0.2.5.
This commit is contained in:
parent
f569850a55
commit
69f1b1a628
4 changed files with 5 additions and 3 deletions
|
@ -1,5 +1,7 @@
|
|||
# nvd changelog
|
||||
|
||||
## 0.2.5 (unreleased)
|
||||
|
||||
## 0.2.4 (2024-09-29)
|
||||
|
||||
- Added an `nvd history` command for diffing successive generations of a
|
||||
|
|
|
@ -18,7 +18,7 @@ in
|
|||
warn (
|
||||
stdenv.mkDerivation {
|
||||
pname = "nvd";
|
||||
version = "0.2.4";
|
||||
version = "0.2.5";
|
||||
|
||||
src = nix-gitignore.gitignoreSourcePure [ ./.gitignore ] ./src;
|
||||
|
||||
|
|
2
src/nvd
2
src/nvd
|
@ -55,7 +55,7 @@ from typing import Iterable, List, Optional, Union
|
|||
|
||||
signal(SIGPIPE, SIG_DFL) # Python handles SIGPIPE improperly by default.
|
||||
|
||||
NVD_VERSION = "0.2.4"
|
||||
NVD_VERSION = "0.2.5"
|
||||
|
||||
NIX_BIN_DIR = None
|
||||
USE_NIX_COMMAND_FEATURE = False # Whether to explicitly enable the nix-command feature.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH nvd 1 2024-09-26 nvd-0.2.4 "User Commands"
|
||||
.TH nvd 1 2024-09-26 nvd-0.2.5 "User Commands"
|
||||
.SH NAME
|
||||
nvd \- Nix/NixOS package version diff tool
|
||||
.SH SYNOPSIS
|
||||
|
|
Loading…
Reference in a new issue