zephira 0.1.2 → 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 +4 -4
- data/CHANGELOG.md +5 -0
- data/Dockerfile +4 -0
- data/lib/zephira/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d274d7a5e1cc6ee59747461f1c134e9de1530bf8c323411f497583a0fa474bea
|
|
4
|
+
data.tar.gz: 6eb27eff2cc6241886e50336fa121caa4499ed35464d7e668a55de9ea38d12d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d41752ccd01be4bcf32df9bc282616784d90a59f6fe3392ebab49623d3c7d8c3a360b16e9c3766a9c5c300fb96deada6ca81f245b4962ded019dd33967464d16
|
|
7
|
+
data.tar.gz: f5ecfa0bfcfbbe4dd6b260e7f2cf8027f732b4e79c0e8ffe6ed656536357f3e8a498b3586e806ce6afeb1dcb6e6c0cf97cbff1def31f67ded178ed936654b14d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
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
|
+
|
|
3
8
|
## [0.1.2]
|
|
4
9
|
|
|
5
10
|
### 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 \
|
data/lib/zephira/version.rb
CHANGED