From 060131c9ea3424bdfe4ee75ca19c2e9ac35b28a0 Mon Sep 17 00:00:00 2001 From: Patrick Cleavelin Date: Mon, 10 Jun 2024 18:07:32 -0500 Subject: [PATCH] bump version --- .woodpecker.yml | 1 + Cargo.toml | 2 +- flake.nix | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 7114908..93aa5fb 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 4ca4cb6..a34d895 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 diff --git a/flake.nix b/flake.nix index 899f911..dbba380 100644 --- a/flake.nix +++ b/flake.nix @@ -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;