Skip to content

Commit

Permalink
chore: version 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
cottand committed Dec 17, 2023
1 parent 8634319 commit 413f28e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Forked from [looterz/grimd](https://github.com/looterz/grimd)
- [x] Hardcoded whitelist config
- [x] Fast startup and tiny image _(so it can be quickly redeployed for use with templating for service discovery)_
- [x] Small memory footprint (~50MBs with metrics and DoH enabled)
- [x] NixOS Flake for easy deployment

# Installation

Expand All @@ -33,7 +34,8 @@ You can also
- `docker run -d -p 53:53/udp -p 53:53/tcp -p 8080:8080/tcp ghcr.io/cottand/leng`
- use [Docker compose YML](https://raw.githubusercontent.com/cottand/leng/master/docker-compose.yml)
- use the [Nix flake](https://github.com/Cottand/leng/tree/master/flake.nix)
- `nix run github:cottand/leng`
- to run: `nix run github:cottand/leng`
- or [add as a NixOS module](https://cottand.github.io/leng/Nix.html)

Detailed guides and resources can be found in the [docs website](https://cottand.github.io/leng).

Expand Down
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.4.0"
var BuildVersion = "1.5.0"

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

// 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 @@ -16,7 +16,7 @@ The leng flake also exports a NixOS module for easy deployment on NixOS machines
{
inputs = {
# pinned version for safety
leng.url = "github:cottand/leng/v1.4.0";
leng.url = "github:cottand/leng/v1.5.0";
leng.nixpkgs.follows = "nixpkgs";
};
Expand Down Expand Up @@ -50,7 +50,7 @@ Add the following inside your configuration.nix:
{pkgs, lib, ... }: {
imports = [
# import leng module
(builtins.getFlake "github:cottand/leng/1.4.0").nixosModules.default
(builtins.getFlake "github:cottand/leng/1.5.0").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-5dIZzqaw88lKuh1JHJurRZCPgrNzDHK/53bXKNGQBvQ=";
pname = "leng";
version = "1.4.0";
version = "1.5.0";
src = ./.;
};
default = leng;
Expand Down

0 comments on commit 413f28e

Please sign in to comment.