event_sourcery-postgres 0.8.1 → 0.9.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: e0846cda7986faeccb438d159a1fe87e0388855b2a898a5703dbc95d8bbce425
4
- data.tar.gz: c29112988c1049f8978e95c276f1bb96bfc1f5bdf36b491f68dad0dd9ac2b9ce
3
+ metadata.gz: 1f48f164ba06d6ca1b51c7689644310bc107a37c9501db547a6c70214e41166d
4
+ data.tar.gz: 9fa2c3bf874a0bc938c942c65c582c63ea02b48e7ae02fbd535928acc2d4b267
5
5
  SHA512:
6
- metadata.gz: 38a3097e2582d651b4af1d421a4f431f888f09b8cc369f44c059276449f17e9dbac29a2f08bfc1eea7dbf9eae39eebcb3788d5f1d9d72f8702e309a7b3cfba14
7
- data.tar.gz: c384b9737f5888df616f1dc776db9411616434f0025d5ef888d6ad273d9757ebecfec56ff5ee4dc9eca1e05553f5c3cc6dc375aecbb8a979c62e1199b7dbacfb
6
+ metadata.gz: a5136b5f830ee26b5c7899a3a44e7505c8752ba9ca02d9c739ba0a0eae59bd72c295f208c5a0743e36b53df77b55d4b9fe5126def654c128b3f7b92354871f05
7
+ data.tar.gz: 1fc7ba4cbc1661b7b634e91b501adc5e136b6285a184c382f1915865c41a62c634179f035bd1e94734feba03b0a3307ab3951953b1de87f783a2ee726f630db0
data/CHANGELOG.md CHANGED
@@ -6,6 +6,25 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
6
  and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
 
8
8
  ## [Unreleased]
9
+ ## [0.9.0] - 2021-11-18
10
+
11
+ ### Added
12
+
13
+ - Test against Ruby 3.0 in the CI build ([#67]).
14
+
15
+ ### Changed
16
+
17
+ - Use GitHub Actions for the CI build instead of Travis CI ([#66]).
18
+ - This project now uses `main` as its default branch ([#68]).
19
+ - Documentation updated to refer to `main` and links updated accordingly.
20
+
21
+ ### Removed
22
+ - Remove Ruby 2.3, 2.4 and 2.5 from the CI test matrix ([#70]).
23
+
24
+ [#66]: https://github.com/envato/event_sourcery-postgres/pull/66
25
+ [#67]: https://github.com/envato/event_sourcery-postgres/pull/67
26
+ [#68]: https://github.com/envato/event_sourcery-postgres/pull/68
27
+ [#70]: https://github.com/envato/event_sourcery-postgres/pull/70
9
28
 
10
29
  ## [0.8.1] - 2020-10-02
11
30
  ### Added
@@ -91,7 +110,8 @@ or when the loop stops
91
110
  - Postgres related configuration is through `EventSourcery::Postgres.configure`
92
111
  instead of `EventSourcery.configure`.
93
112
 
94
- [Unreleased]: https://github.com/envato/event_sourcery-postgres/compare/v0.8.1...HEAD
113
+ [Unreleased]: https://github.com/envato/event_sourcery-postgres/compare/v0.9.0...HEAD
114
+ [0.9.0]: https://github.com/envato/event_sourcery-postgres/compare/v0.8.1...v0.9.0
95
115
  [0.8.1]: https://github.com/envato/event_sourcery-postgres/compare/v0.8.0...v0.8.1
96
116
  [0.8.0]: https://github.com/envato/event_sourcery-postgres/compare/v0.7.0...v0.8.0
97
117
  [0.7.0]: https://github.com/envato/event_sourcery-postgres/compare/v0.6.0...v0.7.0
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # EventSourcery::Postgres
2
2
 
3
- [![Build Status](https://travis-ci.org/envato/event_sourcery-postgres.svg?branch=master)](https://travis-ci.org/envato/event_sourcery-postgres)
3
+ [![Build Status](https://github.com/envato/event_sourcery-postgres/workflows/tests/badge.svg?branch=main)](https://github.com/envato/event_sourcery-postgres/actions?query=workflow%3Atests+branch%3Amain)
4
4
 
5
5
  ## Development Status
6
6
 
@@ -89,7 +89,7 @@ To install this gem onto your local machine, run `bundle exec rake install`.
89
89
  To release a new version:
90
90
 
91
91
  1. Update the version number in `lib/event_sourcery/postgres/version.rb`
92
- 2. Get this change onto master via the normal PR process
92
+ 2. Get this change onto main via the normal PR process
93
93
  3. Run `bundle exec rake release`, this will create a git tag for the
94
94
  version, push tags up to GitHub, and upload the gem to rubygems.org.
95
95
 
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
  spec.homepage = 'https://github.com/envato/event_sourcery-postgres'
15
15
  spec.metadata = {
16
16
  'bug_tracker_uri' => 'https://github.com/envato/event_sourcery-postgres/issues',
17
- 'changelog_uri' => 'https://github.com/envato/event_sourcery-postgres/blob/master/CHANGELOG.md',
17
+ 'changelog_uri' => 'https://github.com/envato/event_sourcery-postgres/blob/HEAD/CHANGELOG.md',
18
18
  'source_code_uri' => 'https://github.com/envato/event_sourcery-postgres',
19
19
  }
20
20
 
@@ -1,5 +1,5 @@
1
1
  module EventSourcery
2
2
  module Postgres
3
- VERSION = '0.8.1'.freeze
3
+ VERSION = '0.9.0'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: event_sourcery-postgres
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Envato
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-10-01 00:00:00.000000000 Z
11
+ date: 2021-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sequel
@@ -122,7 +122,7 @@ dependencies:
122
122
  - - ">="
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
- description:
125
+ description:
126
126
  email:
127
127
  - rubygems@envato.com
128
128
  executables: []
@@ -149,9 +149,9 @@ homepage: https://github.com/envato/event_sourcery-postgres
149
149
  licenses: []
150
150
  metadata:
151
151
  bug_tracker_uri: https://github.com/envato/event_sourcery-postgres/issues
152
- changelog_uri: https://github.com/envato/event_sourcery-postgres/blob/master/CHANGELOG.md
152
+ changelog_uri: https://github.com/envato/event_sourcery-postgres/blob/HEAD/CHANGELOG.md
153
153
  source_code_uri: https://github.com/envato/event_sourcery-postgres
154
- post_install_message:
154
+ post_install_message:
155
155
  rdoc_options: []
156
156
  require_paths:
157
157
  - lib
@@ -166,8 +166,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
166
166
  - !ruby/object:Gem::Version
167
167
  version: '0'
168
168
  requirements: []
169
- rubygems_version: 3.1.4
170
- signing_key:
169
+ rubygems_version: 3.0.3
170
+ signing_key:
171
171
  specification_version: 4
172
172
  summary: Postgres event store for use with EventSourcery
173
173
  test_files: []