brand.dev 0.1.0.pre.alpha.11 → 0.1.0.pre.alpha.12

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: a666a0f4444202bc0c8696670859e71589dd7194c901681e1d41fe9796ee4bec
4
- data.tar.gz: 78223ef274c1318f049161eb94d9492c81b8f56334443342fe4e927d6608face
3
+ metadata.gz: 8489d32b9b6fab9c950ab137de8d3cd7a20deff639c8d7c276800ddfe3c0e0be
4
+ data.tar.gz: 129c18090fafd4cbff4e8dc593b6b7dee9f120c93a8658e192b65d7e6848a8de
5
5
  SHA512:
6
- metadata.gz: b1fa375c99a994fe61809051dc7436b6cf3c2694967a05b27f5f8a99dc1bd1e8aeab8cab0b215443a7469e429d95b51c811c2e9a6b56e76a908a97b97f3e3961
7
- data.tar.gz: f7735aee12154998268c08ae41d2643f05f5fa83895d9b37863c3f62cbb3e75756082bfbbdbef03e0c52136f4457efec7d54f80ebc9feaf092ee1d41bef64e99
6
+ metadata.gz: 7023535ddb49dd527e5e63ce9ee57f7c7a84b83439f9360edab750246238159abfcd30e4805d14f097622dfee36267f556e571171756c9fdef68d18ddabdf933
7
+ data.tar.gz: 968d17e3084aa9a17b701f4d78c523a198731f1ed8f0d371e2dd3d0b51ac6778d7af963298d5d679356ef4894bc89996356ea265546a312d7f06db4f4d493afb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0-alpha.12 (2025-06-29)
4
+
5
+ Full Changelog: [v0.1.0-alpha.11...v0.1.0-alpha.12](https://github.com/brand-dot-dev/ruby-sdk/compare/v0.1.0-alpha.11...v0.1.0-alpha.12)
6
+
7
+ ### Features
8
+
9
+ * **api:** manual updates ([ed09624](https://github.com/brand-dot-dev/ruby-sdk/commit/ed09624d1e608e9a6f1294f385341483d4973a3e))
10
+
11
+
12
+ ### Chores
13
+
14
+ * **ci:** only run for pushes and fork pull requests ([4356075](https://github.com/brand-dot-dev/ruby-sdk/commit/4356075a3db29b2d44ea84ad3abfc37491ec7301))
15
+ * **internal:** version bump ([d186e95](https://github.com/brand-dot-dev/ruby-sdk/commit/d186e95c03f25e3f0c07a43e0dab6c40970769e4))
16
+
3
17
  ## 0.1.0-alpha.11 (2025-06-27)
4
18
 
5
19
  Full Changelog: [v0.1.0-alpha.10...v0.1.0-alpha.11](https://github.com/brand-dot-dev/ruby-sdk/compare/v0.1.0-alpha.10...v0.1.0-alpha.11)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "brand.dev", "~> 0.1.0.pre.alpha.11"
18
+ gem "brand.dev", "~> 0.1.0.pre.alpha.12"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -64,7 +64,8 @@ module BrandDev
64
64
  optional :domain, String
65
65
 
66
66
  # @!attribute fonts
67
- # An array of fonts used by the brand's website
67
+ # An array of fonts used by the brand's website. NOTE: This is deprecated and will
68
+ # be removed in the future. Please migrate to the styleguide API.
68
69
  #
69
70
  # @return [Array<BrandDev::Models::BrandRetrieveResponse::Brand::Font>, nil]
70
71
  optional :fonts,
@@ -119,7 +120,7 @@ module BrandDev
119
120
  #
120
121
  # @param domain [String] The domain name of the brand
121
122
  #
122
- # @param fonts [Array<BrandDev::Models::BrandRetrieveResponse::Brand::Font>] An array of fonts used by the brand's website
123
+ # @param fonts [Array<BrandDev::Models::BrandRetrieveResponse::Brand::Font>] An array of fonts used by the brand's website. NOTE: This is deprecated and will
123
124
  #
124
125
  # @param logos [Array<BrandDev::Models::BrandRetrieveResponse::Brand::Logo>] An array of logos associated with the brand
125
126
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BrandDev
4
- VERSION = "0.1.0.pre.alpha.11"
4
+ VERSION = "0.1.0.pre.alpha.12"
5
5
  end
@@ -144,7 +144,8 @@ module BrandDev
144
144
  sig { params(domain: String).void }
145
145
  attr_writer :domain
146
146
 
147
- # An array of fonts used by the brand's website
147
+ # An array of fonts used by the brand's website. NOTE: This is deprecated and will
148
+ # be removed in the future. Please migrate to the styleguide API.
148
149
  sig do
149
150
  returns(
150
151
  T.nilable(
@@ -278,7 +279,8 @@ module BrandDev
278
279
  description: nil,
279
280
  # The domain name of the brand
280
281
  domain: nil,
281
- # An array of fonts used by the brand's website
282
+ # An array of fonts used by the brand's website. NOTE: This is deprecated and will
283
+ # be removed in the future. Please migrate to the styleguide API.
282
284
  fonts: nil,
283
285
  # An array of logos associated with the brand
284
286
  logos: nil,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brand.dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre.alpha.11
4
+ version: 0.1.0.pre.alpha.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brand Dev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-06-27 00:00:00.000000000 Z
11
+ date: 2025-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool