Skip to content

Commit

Permalink
version: 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cottand committed Jan 9, 2024
1 parent 9cb692d commit e9b19d3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ import (
)

// BuildVersion returns the build version of leng, this should be incremented every new release
var BuildVersion = "1.5.0"
var BuildVersion = "1.5.1"

// ConfigVersion returns the version of leng, this should be incremented every time the config changes so leng presents a warning
var ConfigVersion = "1.5.0"
var ConfigVersion = "1.5.1"

// Config holds the configuration parameters
type Config struct {
Expand Down
4 changes: 2 additions & 2 deletions doc/src/Nix.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Please refer to [Configuration](./Configuration.md) for the options you can use
{
inputs = {
# pinned version for safety
leng.url = "github:cottand/leng/v1.5.0";
leng.url = "github:cottand/leng/v1.5.1";
leng.nixpkgs.follows = "nixpkgs";
};
Expand Down Expand Up @@ -52,7 +52,7 @@ Add the following inside your configuration.nix:
{pkgs, lib, ... }: {
imports = [
# import leng module
(builtins.getFlake "github:cottand/leng/v1.5.0").nixosModules.default
(builtins.getFlake "github:cottand/leng/v1.5.1").nixosModules.default
];
# now you can use services.leng!
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
inherit system;
vendorHash = "sha256-6igkQhfri7fIH6m7dhxezp90J5Wsk2SP+Mvs0vCu0SU=";
pname = "leng";
version = "1.5.0";
version = "1.5.1";
src = ./.;
};
default = leng;
Expand Down

0 comments on commit e9b19d3

Please sign in to comment.