mirror of
https://gitlab.com/khumba/nvd.git
synced 2024-11-10 06:59:29 +01:00
Bump to v0.2.4.
This commit is contained in:
parent
6a67c9e1b4
commit
19a6f7d3d1
4 changed files with 5 additions and 3 deletions
|
@ -1,5 +1,7 @@
|
||||||
# nvd changelog
|
# nvd changelog
|
||||||
|
|
||||||
|
## 0.2.4 (unreleased)
|
||||||
|
|
||||||
## 0.2.3 (2023-05-22)
|
## 0.2.3 (2023-05-22)
|
||||||
|
|
||||||
- Fix compatibility with nix-2.3 where `nix --extra-experimental-features` isn't
|
- Fix compatibility with nix-2.3 where `nix --extra-experimental-features` isn't
|
||||||
|
|
|
@ -4,7 +4,7 @@ let
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "nvd";
|
pname = "nvd";
|
||||||
version = "0.2.3";
|
version = "0.2.4";
|
||||||
|
|
||||||
src = nix-gitignore.gitignoreSourcePure [ ./.gitignore ] ./src;
|
src = nix-gitignore.gitignoreSourcePure [ ./.gitignore ] ./src;
|
||||||
|
|
||||||
|
|
2
src/nvd
2
src/nvd
|
@ -50,7 +50,7 @@ from typing import Dict, List, Optional, Tuple, Union
|
||||||
|
|
||||||
signal(SIGPIPE, SIG_DFL) # Python handles SIGPIPE improperly by default.
|
signal(SIGPIPE, SIG_DFL) # Python handles SIGPIPE improperly by default.
|
||||||
|
|
||||||
NVD_VERSION = "0.2.3"
|
NVD_VERSION = "0.2.4"
|
||||||
|
|
||||||
NIX_BIN_DIR = None
|
NIX_BIN_DIR = None
|
||||||
USE_NIX_COMMAND_FEATURE = False # Whether to explicitly enable the nix-command feature.
|
USE_NIX_COMMAND_FEATURE = False # Whether to explicitly enable the nix-command feature.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH nvd 1 2021-05-16 nvd-0.2.3 "User Commands"
|
.TH nvd 1 2021-05-16 nvd-0.2.4 "User Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
nvd \- Nix/NixOS package version diff tool
|
nvd \- Nix/NixOS package version diff tool
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
Loading…
Reference in a new issue