lxi_rb 0.2.25 → 0.2.26
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 +6 -0
- data/Gemfile.lock +1 -1
- data/cog.toml +2 -8
- data/lib/lxi/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: 2dcef63408e7e30444e4812b8882d4276bbf1e8e960c9011ee9b9f287c007a8f
|
|
4
|
+
data.tar.gz: 25f59056e4dab3fe8dc01bce678062108f42bac7a751021390691f3a6315efe7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 36529228a01aec05de4c9bfd105942cd9e09221c03cda6bd7b5b084657926e20d134b7099d1f13f95f91135dc3be02256a65ed6c5ff9498cccb7c06ae3de51d4
|
|
7
|
+
data.tar.gz: 1ba6db76bd435b5c353ac5b84eb9a2702bdcc0525536d8c183dbe078486a92a33ad8754918cee5f3fc08c0593653ed723ccefa983b7c42207107d38ccabc301b
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
- **(Test)** Some great Feature - ([76314bf](https://github.com/robcarruthers/lxi_rb/commit/76314bf4ccd40d9df8efe11bb1fc6046299b0284)) - [@robcarruthers](https://github.com/robcarruthers)
|
|
4
4
|
|
|
5
5
|
- - -
|
|
6
|
+
## [v0.2.26](https://github.com/robcarruthers/lxi_rb/compare/v0.2.25..v0.2.26) - 2023-05-08
|
|
7
|
+
#### Miscellaneous Chores
|
|
8
|
+
- **(Cog)** Update config - ([b609bf2](https://github.com/robcarruthers/lxi_rb/commit/b609bf21badde64e4968e39af4730aa5e0e76e01)) - [@robcarruthers](https://github.com/robcarruthers)
|
|
9
|
+
|
|
10
|
+
- - -
|
|
11
|
+
|
|
6
12
|
## [v0.2.25](https://github.com/robcarruthers/lxi_rb/compare/v0.2.24..v0.2.25) - 2023-05-08
|
|
7
13
|
#### Bug Fixes
|
|
8
14
|
- **(Changelog)** Fix someBug - ([4001a3a](https://github.com/robcarruthers/lxi_rb/commit/4001a3a6438cd080d9042ca5a03de454fc913a74)) - [@robcarruthers](https://github.com/robcarruthers)
|
data/Gemfile.lock
CHANGED
data/cog.toml
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
1
|
from_latest_tag = true
|
|
2
2
|
ignore_merge_commits = false
|
|
3
3
|
branch_whitelist = []
|
|
4
|
-
pre_bump_hooks = [
|
|
5
|
-
|
|
6
|
-
"echo 'Bumping gem from {{latest}} to {{version}}'"
|
|
7
|
-
]
|
|
8
|
-
post_bump_hooks = [
|
|
9
|
-
"rake release",
|
|
10
|
-
"echo 'Releasing gem {{version}}'"
|
|
11
|
-
]
|
|
4
|
+
pre_bump_hooks = [ "bump set {{version}} -p 'chore(version):' -m 'v{{version}}'" ]
|
|
5
|
+
post_bump_hooks = [ "rake release" ]
|
|
12
6
|
pre_package_bump_hooks = []
|
|
13
7
|
post_package_bump_hooks = []
|
|
14
8
|
tag_prefix = "v"
|
data/lib/lxi/version.rb
CHANGED