sequel-pgt_outbox 0.2.4 → 0.2.5

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: d400feeb0e873e210869a96f7ab1727be097e5ab3d0193098a8b66d5ffc393d5
4
- data.tar.gz: '00708f11ab284c776ccf130e6e96047a6688f320882afc11589a6152dcffaa38'
3
+ metadata.gz: 6cc58b4c71809dcbcde313ac69309d2377c683e99e40e8f84a08e940cbabbaaf
4
+ data.tar.gz: 2ade2c54c240874a84d5fbea716b0b805ca657616723d74f90be6244046efd6d
5
5
  SHA512:
6
- metadata.gz: 0a15f2188eacc67bc47b6ba0c407d77917503f309e2a1ff5f5cb2ba7e3995522d69c2b7c46957ff4322ed3163eea6fd08d3ff2673b69844623e8abe08cea625a
7
- data.tar.gz: f7b58b27d95fe3d9239043bbea0ef328efe3650dd1f6c68e9a5c3265a01069f0ac0bd3adfb27afe93a0a5bb32452eb8e038bb681d0a89ed6704b2e33c74831cd
6
+ metadata.gz: 17f3c2c624d42c0facdf4ac9498b38697df42baf8f013af60ee91610589453f09c38db9874fb86204a9ab0d6cd2e338b11e978f45d0bdfd38cd362211d496342
7
+ data.tar.gz: 1809b9b0a183a9a0a611e55dcd993c210e500c80392741d656eadef5d47d68568c0d961fbfeab310f797d45aa97705e26b192168ce38780d7586d1a0bdbde9b0
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.2.4"
2
+ ".": "0.2.5"
3
3
  }
data/.version.txt CHANGED
@@ -1 +1 @@
1
- 0.2.4
1
+ 0.2.5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.2.5](https://github.com/rubyists/sequel-pgt_outbox/compare/v0.2.4...v0.2.5) (2025-02-16)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * Correct docs so that extension is used ([#13](https://github.com/rubyists/sequel-pgt_outbox/issues/13)) ([c050c5e](https://github.com/rubyists/sequel-pgt_outbox/commit/c050c5e831e3285b4b2168150ed3ea66dea680e6))
9
+
3
10
  ## [0.2.4](https://github.com/rubyists/sequel-pgt_outbox/compare/v0.2.3...v0.2.4) (2025-02-16)
4
11
 
5
12
 
data/Readme.adoc CHANGED
@@ -27,8 +27,10 @@ gem install sequel-pgt_outbox
27
27
  ### Using the sequel cli
28
28
 
29
29
  ```bash
30
- sequel -r sequel/pgt_outbox postgres://localhost/mydb
30
+ sequel -r sequel/pgt_outbox postgres:///spgt_test
31
31
  Your database is stored in DB...
32
+ irb(main):000> DB.extension :pgt_output
33
+ => #<Sequel::Postgres::Database database=spgt_test>
32
34
  irb(main):001> DB.create_table(:foo) { primary_key :id; String :s; Integer :i }
33
35
  => nil
34
36
  irb(main):002> function = DB.pgt_setup_outbox(:foo)
@@ -3,7 +3,7 @@
3
3
  module Rubyists
4
4
  module PgtOutbox
5
5
  # x-release-please-start-version
6
- VERSION = '0.2.4'
6
+ VERSION = '0.2.5'
7
7
  # x-release-please-end
8
8
  end
9
9
  end
data/oci/Gemfile CHANGED
@@ -3,5 +3,5 @@
3
3
  source 'https://rubygems.org'
4
4
 
5
5
  # x-release-please-start-version
6
- gem 'sequel-pgt_outbox', '= 0.2.4'
6
+ gem 'sequel-pgt_outbox', '= 0.2.5'
7
7
  # x-release-please-end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sequel-pgt_outbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - bougyman