bump version
ci/woodpecker/push/woodpecker Pipeline failed Details

Patrick Cleavelin 2024-06-10 18:07:32 -05:00
parent 13ac538ca2
commit 060131c9ea
3 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@ steps:
event: [push, tag]
image: alpine:edge
commands:
- apk update && apk upgrade
- apk add --no-cache git nix --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing
- echo "system-features = nixos-test benchmark big-parallel uid-range kvm" > /etc/nix/nix.conf
- nix build --extra-experimental-features nix-command --extra-experimental-features flakes .#docker

View File

@ -1,6 +1,6 @@
[package]
name = "memejoin-rs"
version = "0.2.1-alpha"
version = "0.2.2-alpha"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -8,7 +8,7 @@
outputs = { self, nixpkgs, rust-overlay, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
tag = "v0.2.1-alpha";
tag = "v0.2.2-alpha";
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs {
inherit system overlays;