sequel-pgt_outbox 0.2.6 → 0.2.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 +4 -4
- data/.release-please-manifest.json +1 -1
- data/.version.txt +1 -1
- data/CHANGELOG.md +7 -0
- data/Readme.adoc +6 -0
- data/lib/sequel/pgt_outbox/version.rb +1 -1
- data/oci/Gemfile +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: 7123de7b64b4420a074b4582b45cd14265a37fde7d4d21f3c2299412ea79075d
|
4
|
+
data.tar.gz: e75d210ca899710840bbca70a54a185f56b95938c1d2dce01658c802db7b04c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5fe2b0a4e292ed30fdd7ee41a96d250483f29e1e57849394666ab48bcf5442f551b1971b476c197a261206fbe3cf7a1b18523ddb15d04a7eb5f098e0ca52632e
|
7
|
+
data.tar.gz: 917ffb09105f2ece1e19ca870ba7ab5e9bd4fd2977676f5b0a80160f6eb0251182be9f962b15bf0b6638f23dd8a9fa4fd057201134e376a84cf2596695b484a6
|
data/.version.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.2.7](https://github.com/rubyists/sequel-pgt_outbox/compare/v0.2.6...v0.2.7) (2025-02-16)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* Removes the github gem publish action which was broken ([#23](https://github.com/rubyists/sequel-pgt_outbox/issues/23)) ([d16e096](https://github.com/rubyists/sequel-pgt_outbox/commit/d16e096fd3659786c30114ca6116e221ad81ddfc))
|
9
|
+
|
3
10
|
## [0.2.6](https://github.com/rubyists/sequel-pgt_outbox/compare/v0.2.5...v0.2.6) (2025-02-16)
|
4
11
|
|
5
12
|
|
data/Readme.adoc
CHANGED
@@ -11,6 +11,7 @@
|
|
11
11
|
:github-home: https://github.com/rubyists/sequel-pgt_outbox
|
12
12
|
:coc: https://github.com/rubyists/sequel-pgt_outbox/blob/main/CODE_OF_CONDUCT.md[Code of Conduct]
|
13
13
|
:mit: https://opensource.org/licenses/MIT[MIT License]
|
14
|
+
:container-registry: https://github.com/rubyists/sequel-pgt_outbox/pkgs/container/sequel-pgt_outbox[Container Registry]
|
14
15
|
|
15
16
|
image::https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg[Conventional Commits,link=https://www.conventionalcommits.org/en/v1.0.0/]
|
16
17
|
|
@@ -55,6 +56,11 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
55
56
|
gem install sequel-pgt_outbox
|
56
57
|
```
|
57
58
|
|
59
|
+
=== Container
|
60
|
+
|
61
|
+
If you do not want to install the gem, you can use the provided Docker image,
|
62
|
+
available at the Rubyists Github {container-registry}.
|
63
|
+
|
58
64
|
## Usage
|
59
65
|
|
60
66
|
### Using the sequel cli
|
data/oci/Gemfile
CHANGED