From 9a46a0807b370680aa805e4d786d7258abbe7dc9 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 24 Sep 2024 23:18:15 -0700 Subject: [PATCH] bump version --- Dockerfile | 2 +- acceptance/logs/expected.log | 2 +- shard.yml | 2 +- src/version.cr | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1a01f06..ed237aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # https://github.com/84codes/crystal-container-images -FROM 84codes/crystal:1.12.1-ubuntu-24.04 AS builder +FROM 84codes/crystal:1.13.2-ubuntu-24.04 AS builder LABEL org.opencontainers.image.title="runway" LABEL org.opencontainers.image.description="clearing code for take off" diff --git a/acceptance/logs/expected.log b/acceptance/logs/expected.log index 6377b80..5fe4212 100644 --- a/acceptance/logs/expected.log +++ b/acceptance/logs/expected.log @@ -3,7 +3,7 @@ INFO: 📖 loading runway configuration DEBUG: attempting to load config from acceptance/config/config.yml INFO: ✅ loaded configuration successfully INFO: 🚚 2 projects loaded -INFO: 🛫 starting runway - version: v0.2.1 +INFO: 🛫 starting runway - version: v0.2.3 INFO: 📦 starting project project-1 INFO: 🕐 scheduling event with interval 3s for project-1 INFO: 📦 starting project project-2 diff --git a/shard.yml b/shard.yml index d197afe..3a808e0 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: runway -version: 0.2.2 +version: 0.2.3 authors: - GrantBirki diff --git a/src/version.cr b/src/version.cr index d11a427..11438b2 100644 --- a/src/version.cr +++ b/src/version.cr @@ -1,3 +1,3 @@ module Runway - VERSION = "v0.2.2" + VERSION = "v0.2.3" end