Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
chvp committed Sep 1, 2024
1 parent a9a87f7 commit 3762f90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config/initializers/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Accentor
class Application
module Version
MAJOR = 0
MINOR = 20
MINOR = 21
PATCH = 0

STRING = [MAJOR, MINOR, PATCH].compact.join('.')
Expand Down
7 changes: 2 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@
flake-utils.url = "github:numtide/flake-utils";
devshell = {
url = "github:numtide/devshell";
inputs = {
flake-utils.follows = "flake-utils";
nixpkgs.follows = "nixpkgs";
};
inputs.nixpkgs.follows = "nixpkgs";
};
};

Expand All @@ -31,7 +28,7 @@
default = accentor-api;
accentor-api = pkgs.stdenv.mkDerivation rec {
pname = "accentor-api";
version = "0.20.0";
version = "0.21.0";

src = pkgs.lib.cleanSourceWith { filter = name: type: !(builtins.elem name [ ".github" "flake.lock" "flake.nix" ]); src = ./.; name = "source"; };

Expand Down

0 comments on commit 3762f90

Please sign in to comment.