omni_agent 0.1.6 → 0.1.7

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: d48868f19885179d74185a391e4b6687f3dc2d4320962eac162ac6f12d755892
4
- data.tar.gz: 6b93ca1c7aa336226e64936e13839c862c4a05a301a42b9802042012fe2f157c
3
+ metadata.gz: 53319cab79a557426f4a7a109a1627c425cffe49d56dc6f2d0baba58ab74b24d
4
+ data.tar.gz: 541ff86413a12fbf65f95c12945e45a74d9baac18f9f7d446f5dce3281ae93ce
5
5
  SHA512:
6
- metadata.gz: d0b1c7d3a1e9e0166f934d722b51c6f08c2771368b336c59efa46b67b2ba71ac173189b9d97b3431649b6171fe8eb309db6c49de5401b1fbd230cdb800008053
7
- data.tar.gz: e337186410b4b79da024276338208520d95c48fe7ca2b9fa1731d37c2ad4836f469aa69d57230805f0e250c591727de9d6db0aef49a7502da1b065a403557d44
6
+ metadata.gz: 996ba6f8c9679fea087dccc4fc202de1b4fb2e8debece3fa63438719447819590294b0e965228ff4fb2e93eb25556283cce000dde2f04bba8fb2ee14a3b3ccfd
7
+ data.tar.gz: 8620ac25e792aa0213f00abbf717b814c4b3cca8a09af45a8659f9e557d9df5c0e33363ff109615f139403595630832cf8ff0c370d88a1a26bdfc74bb97ccd6e
data/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.1.7](https://github.com/ACR1209/omni_agent/compare/omni_agent-v0.1.6...omni_agent/v0.1.7) (2026-06-22)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **docs:** use release-please block marker for version badge ([b83ca8d](https://github.com/ACR1209/omni_agent/commit/b83ca8dcad4acba976125b2a844e9c67d5a4df73))
11
+
5
12
  ## [Unreleased]
6
13
 
7
14
  ## [0.1.6] - 2026-06-21
data/Rakefile CHANGED
@@ -6,6 +6,13 @@ load "rails/tasks/engine.rake"
6
6
 
7
7
  require "bundler/gem_tasks"
8
8
 
9
+ # release-please already tags and pushes releases, and CI checks out a
10
+ # detached HEAD, so the default `release` task's git tag/push step
11
+ # (release:guard_clean, release:source_control_push) always fails there.
12
+ # Redefine it to just build + push the gem.
13
+ Rake::Task["release"].clear
14
+ task release: [ "build", "release:rubygem_push" ]
15
+
9
16
  RSpec::Core::RakeTask.new(:spec)
10
17
 
11
18
  task default: :spec
@@ -1,3 +1,3 @@
1
1
  module OmniAgent
2
- VERSION = "0.1.6"
2
+ VERSION = "0.1.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omni_agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - ACR1209