mirror of
https://gitlab.com/khumba/nvd.git
synced 2024-11-10 06:59:29 +01:00
Bump to v0.2.0 because of changed output format.
This commit is contained in:
parent
0cfd93e34e
commit
11fd14887a
4 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
# nvd changelog
|
||||
|
||||
## 0.1.3 (unreleased)
|
||||
## 0.2.0 (unreleased)
|
||||
|
||||
- Add display of the change in closure disk size (issue #8).
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ let
|
|||
in
|
||||
stdenv.mkDerivation {
|
||||
pname = "nvd";
|
||||
version = "0.1.3";
|
||||
version = "0.2.0";
|
||||
|
||||
src = nix-gitignore.gitignoreSourcePure [ ./.gitignore ] ./src;
|
||||
|
||||
|
|
2
src/nvd
2
src/nvd
|
@ -51,7 +51,7 @@ from typing import Dict, List, Optional, Tuple, Union
|
|||
|
||||
signal(SIGPIPE, SIG_DFL) # Python handles SIGPIPE improperly by default.
|
||||
|
||||
NVD_VERSION = "0.1.3"
|
||||
NVD_VERSION = "0.2.0"
|
||||
|
||||
NIX_BIN_DIR = None
|
||||
USE_COLOUR = False
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH nvd 1 2021-05-16 nvd-0.1.3 "User Commands"
|
||||
.TH nvd 1 2021-05-16 nvd-0.2.0 "User Commands"
|
||||
.SH NAME
|
||||
nvd \- Nix/NixOS package version diff tool
|
||||
.SH SYNOPSIS
|
||||
|
|
Loading…
Reference in a new issue