Skip to content

Commit

Permalink
Prepare 0.4.0 (#29)
Browse files Browse the repository at this point in the history
* Prepare 0.4.0

* Allow broken
  • Loading branch information
berberman authored Sep 26, 2021
1 parent 732bc74 commit 248fe98
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 10 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
# Revision history for nvfetcher

## unreleased
## 0.4.0.0

* Rename `_build` to `_sources`

* Remove the symlink `sources.nix -> _sources/generated.nix`
* Remove CLI option `--output` (was used to set the symlink source name, `sources.nix` by default)
* Add CLI option `build-dir` to specify build directory (`_sources` by default)
* Add CLI option `--commit-changes` to commit changes of build directory
* Support openvsx and vsmarketplace version sources (needs new version of nvchecker)
* Support attributes pass through
* Fix the bug that Core rule was cut off even if the configuration has changed
(no longer needs to use `nvfetcher clean` to keep the build system consistency manually)
* Fix the parser of git source in Cargo.lock
* Fix wrong trailing white spances in generated nix expr
* Fix missing semicolon in generated nix expr that reads Cargo.lock file
* Enhance eDSL experience
* Add some unit tests

## 0.3.0.0

Expand Down
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
pkgs = import nixpkgs {
inherit system;
overlays = [ self.overlay ];
config = { allowBroken = true; };
};
in with pkgs; rec {
defaultPackage = nvfetcher-bin;
Expand Down
2 changes: 1 addition & 1 deletion nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}:
mkDerivation {
pname = "nvfetcher";
version = "0.3.0.0";
version = "0.4.0.0";
src = ../.;
isLibrary = true;
isExecutable = true;
Expand Down
2 changes: 1 addition & 1 deletion nvfetcher.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: nvfetcher
version: 0.3.0.0
version: 0.4.0.0
synopsis:
Generate nix sources expr for the latest version of packages

Expand Down

0 comments on commit 248fe98

Please sign in to comment.