zephira 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 65efe9a7d597ca8e64f3db0d492f47dc2c9286734dcc0e3c52cb3e9de97c383c
4
- data.tar.gz: 600beba3336e3c03f91481554dc903dedaef0d440fd559066d813ee19dda0a6a
3
+ metadata.gz: d274d7a5e1cc6ee59747461f1c134e9de1530bf8c323411f497583a0fa474bea
4
+ data.tar.gz: 6eb27eff2cc6241886e50336fa121caa4499ed35464d7e668a55de9ea38d12d0
5
5
  SHA512:
6
- metadata.gz: 03e53c1b4553df983084eef28d0ddec7dca416075e17a6234a890a89c3bc64123a35ca024539a28f852f6de2c1434f2e3717e14ba56d1b990cacd59f8118fe59
7
- data.tar.gz: ccc7f8a5da06e116ecb590a863cc39e80bfb596c42e1c2d2a448d7144457bd23126eb9dd480eba11eadba90d8f97432ae7ec808a505ce993741975fa8d7ba898
6
+ metadata.gz: d41752ccd01be4bcf32df9bc282616784d90a59f6fe3392ebab49623d3c7d8c3a360b16e9c3766a9c5c300fb96deada6ca81f245b4962ded019dd33967464d16
7
+ data.tar.gz: f5ecfa0bfcfbbe4dd6b260e7f2cf8027f732b4e79c0e8ffe6ed656536357f3e8a498b3586e806ce6afeb1dcb6e6c0cf97cbff1def31f67ded178ed936654b14d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Zephira Changelog
2
2
 
3
+ ## [0.1.3]
4
+
5
+ ### Changed
6
+ - Added OCI image labels (`org.opencontainers.image.source`, `description`, `licenses`) to the published Docker image so the GHCR package page links back to the repository and surfaces the README.
7
+
8
+ ## [0.1.2]
9
+
10
+ ### Fixed
11
+ - Release workflow now publishes multi-architecture Docker images (`linux/amd64` and `linux/arm64`). Previous releases only built `linux/amd64`, which prevented the sandbox from launching on Apple Silicon and other arm64 hosts.
12
+
3
13
  ## [0.1.1]
4
14
 
5
15
  ### Fixed
data/Dockerfile CHANGED
@@ -23,6 +23,10 @@ RUN gem build zephira.gemspec
23
23
 
24
24
  FROM ruby:3.4-slim AS runtime
25
25
 
26
+ LABEL org.opencontainers.image.source="https://github.com/aarongough/zephira"
27
+ LABEL org.opencontainers.image.description="Command-line AI coding assistant in Ruby."
28
+ LABEL org.opencontainers.image.licenses="MIT"
29
+
26
30
  RUN apt-get update -qq && \
27
31
  apt-get install -y --no-install-recommends \
28
32
  libreadline-dev \
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Zephira
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zephira
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Gough