zaikio-hub 0.11.1 → 0.11.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/lib/zaikio/hub/subscription.rb +1 -1
- data/lib/zaikio/hub/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3504ba78b1652914135f7d2eeb903da3cce07e726f0f2099b36ccff966db9447
|
4
|
+
data.tar.gz: e85b8fbc0b2768c160cc108ac9778401daaf060478c7c4193d2db05aab0cbcf4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21cf9a06fb5f9452974d6956f4e746696870be94c0dc2614887726f329be47a3197c97c4b6fdf65fcb2ae2fb9b06feaaef04bc5ad47bcede8e991c92f8fa66c2
|
7
|
+
data.tar.gz: 0e37a99691774aff34c389b9c557f09e11adb60de99b1288b5f4418f57f481118de38904628b8cf70d33de70a5e808d0acc05ac32dad6c2660dfd4151c2257d8
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
## [0.11.2] - 2022-10-13
|
11
|
+
|
12
|
+
* Fixed `subscription_url` attribute typo in `Subscription`
|
13
|
+
|
10
14
|
## [0.11.1] - 2022-10-13
|
11
15
|
|
12
16
|
* Added `subscription_url` attribute in `Subscription`
|
@@ -100,7 +104,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
100
104
|
### Added
|
101
105
|
- Added subscriptions (migration required)
|
102
106
|
|
103
|
-
[Unreleased]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.11.
|
107
|
+
[Unreleased]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.11.2..HEAD
|
108
|
+
[0.11.2]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.11.1..v0.11.2
|
104
109
|
[0.11.1]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.11.0..v0.11.1
|
105
110
|
[0.11.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.10.0..v0.11.0
|
106
111
|
[0.10.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.9.0..v0.10.0
|
@@ -9,7 +9,7 @@ module Zaikio
|
|
9
9
|
attributes :updated_at, :created_at, :subscriber_type, :subscriber_id,
|
10
10
|
:status, :app_name, :activated_at, :last_billed_at,
|
11
11
|
:last_paid_at, :trial_ended_at, :plan, :plan_name, :preceding_plan,
|
12
|
-
:changed_plan_at, :
|
12
|
+
:changed_plan_at, :subscription_url, :usages_in_current_billing_period
|
13
13
|
|
14
14
|
def initialize(attributes = {})
|
15
15
|
if attributes["subscriber_id"]
|
data/lib/zaikio/hub/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zaikio-hub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.11.
|
4
|
+
version: 0.11.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- crispymtn
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2022-10-
|
13
|
+
date: 2022-10-14 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: concurrent-ruby
|