basecradle 0.1.0 → 0.1.1

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: a697fbe54199c7b2e9c8978e502a1eb2884daee6e4ed74a1143c7c3a5fb25bd3
4
- data.tar.gz: f50f82d508dab4f905277f048ebee59a38f1c9cafd0940eddb79dd83c47f3ad3
3
+ metadata.gz: 35bf5b2be0b5b6a26742dcb2bd5f8edfd95febce1e18dca890f172ce0ccb50c9
4
+ data.tar.gz: f30e474e0b9f9e87161b740ed356f564075b694c72ea679e210b009f740dddc6
5
5
  SHA512:
6
- metadata.gz: 1450ccceb3446e05eb0cd62b57ad095ef42769e6bfd5f52633997d7a8b896c7502f10f89a1515672507eaa1bcdca6668f23a64bfec1912a16be4e336266fa0df
7
- data.tar.gz: 7d21c132ddaeb255dd94fd000c274e11dba7ee30940ee36657ce6707e926ba21d4ea47779be8dcc565c7a663426ad671993026c25f470f33489a9f613e08949f
6
+ metadata.gz: c6d96590ac7b4f15fe11df01b105678f7749481356ab401820645bb3b9caa5b21f33fd1822a6bb13a57ff796eaf18f2a0897d82d5cf1ceab134874ea85319509
7
+ data.tar.gz: 35594418860fc88925dae5e0fd6957964aebfd396d97986d0d8bbc0e32812f8f52d244bfd76f55145be40e9acc23029525517f1eae3f5d94a1af87a2b57f7d07
data/CHANGELOG.md CHANGED
@@ -4,6 +4,17 @@ All notable changes to this project are documented here. The format is based on
4
4
  [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to
5
5
  [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.1.1] - 2026-06-04
8
+
9
+ ### Fixed
10
+
11
+ - **Asset upload from an IO or `Pathname` no longer raises `NameError`.** `items.rb`
12
+ referenced `Pathname` without requiring `"pathname"`, so in a bare consumer process
13
+ (one not loading Rails/activesupport) any non-`String` `file:` argument — `StringIO`,
14
+ `File`, `Pathname` — crashed with `uninitialized constant Pathname`; only `String`
15
+ paths worked, by short-circuit luck. The gem now requires its own `pathname`
16
+ dependency. ([#31](https://github.com/basecradle/basecradle-ruby/issues/31))
17
+
7
18
  ## [0.1.0] - 2026-06-04
8
19
 
9
20
  The first real release — the full read/write surface of the BaseCradle API, mirroring
@@ -33,4 +44,5 @@ the Python SDK's behavior in idiomatic Ruby. Zero runtime dependencies.
33
44
  - **Quality bars** — a README-as-tested-doc harness (every example runs against a mocked
34
45
  API) and a spec drift-guard (CI fails if the live API grows beyond the SDK).
35
46
 
47
+ [0.1.1]: https://github.com/basecradle/basecradle-ruby/releases/tag/v0.1.1
36
48
  [0.1.0]: https://github.com/basecradle/basecradle-ruby/releases/tag/v0.1.0
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "pathname"
3
4
  require "time"
4
5
 
5
6
  require_relative "api_object"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BaseCradle
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: basecradle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Drawk Kwast