riffer 0.2.0 → 0.3.0

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: b8dc7ed9ce34f57a7b72ebbe859953e93fd147e90930943e92279d77d94cba2f
4
- data.tar.gz: b8b1784bba856ad9207b1582bd75885c18f13b9ff38c6049f1278912417d02fa
3
+ metadata.gz: cf00786a68a214f79932e333cec3923029eece73c68ba711cbefe0dcbaaede9d
4
+ data.tar.gz: 5399f585fd31c1855d382bd6e16b5b9c1551a7acabc69c0c2316d22cc9e47804
5
5
  SHA512:
6
- metadata.gz: 849e232aa92045fcacbe0ac98433297a1c769c1ff471c91bab4507b72f4a81a59b6d0fd2de1cb354615ac5910de27466ef9f96c3f72cf2bc8e5fa668f510f923
7
- data.tar.gz: bfefcc497f720b13cd3032d4a03acff0c26e8fd1b83cf19b15da925aee5c375afa3f3577fb1086c82db857a82d65af60c148110be5c2730e2695e096f10d8906
6
+ metadata.gz: be57e2ae92c5deb112cf6fbef31d664b3e4500231e76972456aa6aa43fc1db058897e2001dfe08578f286041eeb41e1abdeafd450b5a055f2a936fbf62e8584b
7
+ data.tar.gz: 79d75a1ceacca2d26c8e316c37f6d48e50cedecaa7c046ce425f2cb0e4fcb57fa15e3bbca7a386889d91ffad6a1a7269c4d6e85912b679aa9b63114c9caff403
@@ -0,0 +1,10 @@
1
+ {
2
+ "release-type": "ruby",
3
+ "packages": {
4
+ ".": {
5
+ "release-type": "ruby",
6
+ "package-name": "riffer",
7
+ "version-file": "lib/riffer/version.rb"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.3.0"
3
+ }
data/CHANGELOG.md CHANGED
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.3.0](https://github.com/bottrall/riffer/compare/riffer-v0.2.0...riffer/v0.3.0) (2025-12-29)
9
+
10
+
11
+ ### Features
12
+
13
+ * add release and publish workflows ([#35](https://github.com/bottrall/riffer/issues/35)) ([3eb0389](https://github.com/bottrall/riffer/commit/3eb03897d0e96c01ef1857c04b2bafa53e37dde0))
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * add manifest file to release configuration ([#43](https://github.com/bottrall/riffer/issues/43)) ([8d46135](https://github.com/bottrall/riffer/commit/8d46135ccd1c4315d624fa11a639e51aa1f1e5b8))
19
+ * auto-publishing on new release ([#38](https://github.com/bottrall/riffer/issues/38)) ([5a1d267](https://github.com/bottrall/riffer/commit/5a1d267e046c1531e01c80b9e40b94eed216360c))
20
+ * remove manifest file from release configuration ([#41](https://github.com/bottrall/riffer/issues/41)) ([2f898d8](https://github.com/bottrall/riffer/commit/2f898d8e1bdf6787583f22c83e83e90f2a75142e))
21
+ * remove release-type configuration from release workflow ([#42](https://github.com/bottrall/riffer/issues/42)) ([e270a6c](https://github.com/bottrall/riffer/commit/e270a6c906f7e04f1b0ce57b7d29808c98e7dce8))
22
+ * reset release manifest to empty object ([#44](https://github.com/bottrall/riffer/issues/44)) ([26f1b6d](https://github.com/bottrall/riffer/commit/26f1b6d2dcb622295026cc7fb247559156864d74))
23
+ * restructure release configuration and update manifest format ([#45](https://github.com/bottrall/riffer/issues/45)) ([d07694c](https://github.com/bottrall/riffer/commit/d07694c05d49166740f3408a343c351d33749edf))
24
+ * simplify release configuration by removing unnecessary package structure ([#40](https://github.com/bottrall/riffer/issues/40)) ([8472967](https://github.com/bottrall/riffer/commit/84729670fd202208256e6de69f1b81366ad0a688))
25
+
8
26
  ## [0.2.0](https://github.com/bottrall/riffer/compare/v0.1.0...v0.2.0) (2025-12-28)
9
27
 
10
28
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Riffer
4
- VERSION = "0.2.0"
4
+ VERSION = "0.3.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: riffer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jake Bottrall
@@ -122,6 +122,8 @@ executables: []
122
122
  extensions: []
123
123
  extra_rdoc_files: []
124
124
  files:
125
+ - ".release-please-config.json"
126
+ - ".release-please-manifest.json"
125
127
  - ".ruby-version"
126
128
  - ".standard.yml"
127
129
  - CHANGELOG.md