easyship 0.4.0 → 0.5.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: 7b584f647a6c1e9cd0379a94b3fc479c8f82691ab1ff8a36d797dae1c24e9c89
4
- data.tar.gz: 5f288ce157f0b0b1c5e19f6c8a0a7851bf2bf1c5acb1c22b6660656ceed10204
3
+ metadata.gz: 48a6c8c265dc7c60e8b1b749032f29632ba74b79df21192bc8e7c5a2a80aea26
4
+ data.tar.gz: e6e52aba415127500177c16db9e1e99c931fda0bcc5642e60e69dc973efae886
5
5
  SHA512:
6
- metadata.gz: 22a0cbabb4582b714d56827fdd6f29bee92958900b2204ba3fce15a62ed85139e327dcfaa39dcf3f935cdeab0440424fa00bf044f003282ac9212837c97a83a2
7
- data.tar.gz: fd30c1f4d75e89f2cc01ea8b97040cd19717af6f5e7d6bdb26a661507de197882be0f10f9cfaae2f49ed92d65e8aa5c8cd9f6ee3b24e4ef747da158012a94abc
6
+ metadata.gz: 821d88416be393652174144a6ae29161ee7c4b43cde9c478515653365f1d84b7c9e11fc7b7ea4e5bd75b932cac3b672d572eb173ba2fab2e01f9e30286edaf42
7
+ data.tar.gz: 16eba98f3e5de4334a8d182e96262da79eb3dcfc1d61709652fb315603971466a1fb42ed65dfe9ebae9f72c747892e7ca20a3c3a83075640af88a1989321d6a4
data/.rubocop.yml CHANGED
@@ -4,7 +4,7 @@ plugins:
4
4
  - rubocop-performance
5
5
 
6
6
  AllCops:
7
- TargetRubyVersion: 3.0
7
+ TargetRubyVersion: 3.2
8
8
  NewCops: enable
9
9
 
10
10
  Style/Copyright:
data/CHANGELOG.md CHANGED
@@ -1,10 +1,28 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [v0.5.1](https://github.com/mmarusyk/easyship/tree/v0.5.1) - 2026-01-24
4
+
5
+ ### Fixed
6
+ - Set SOURCE_DATE_EPOCH in Rakefile to ensure proper gem release dates are detected by Ruby Toolbox
7
+
8
+ ## [v0.5.0](https://github.com/mmarusyk/easyship/tree/v0.5.0) - 2026-01-24
9
+
10
+ ### Added
11
+ - Ruby 4.0 support
12
+
13
+ ### Changed
14
+ - **BREAKING**: Minimum Ruby version increased from 3.0.0 to 3.2.0
15
+
16
+
17
+ ### Fixed
18
+ - Updated unicode-emoji to 4.2.0 for Ruby 4.0 compatibility
19
+
3
20
  ## [v0.4.0](https://github.com/mmarusyk/easyship/tree/v0.4.0) - 2026-01-24
4
21
 
5
22
  ### Added
6
23
  - Support for custom headers by @mmarusyk in https://github.com/mmarusyk/easyship/pull/14
7
24
 
25
+
8
26
  ## [v0.3.0](https://github.com/mmarusyk/easyship/tree/v0.3.0) - 2025-11-29
9
27
 
10
28
  ### Added
data/README.md CHANGED
@@ -11,7 +11,7 @@ This gem provides a simple client for Easyship, offering accessing to Easyship's
11
11
 
12
12
  Before you begin, ensure you have met the following requirements:
13
13
 
14
- - Ruby version 3.0.0 or newer. You can check your Ruby version by running `ruby -v`.
14
+ - Ruby version 3.2.0 or newer. You can check your Ruby version by running `ruby -v`.
15
15
  - Bundler installed. You can install Bundler with `gem install bundler`.
16
16
 
17
17
  ## Installation
data/Rakefile CHANGED
@@ -3,6 +3,11 @@
3
3
  require 'bundler/gem_tasks'
4
4
  require 'rspec/core/rake_task'
5
5
 
6
+ # Set SOURCE_DATE_EPOCH to the last git commit date for reproducible builds
7
+ # This ensures Ruby Toolbox and other tools can properly detect release dates
8
+ # See: https://github.com/rubytoolbox/rubytoolbox/issues/1653
9
+ ENV['SOURCE_DATE_EPOCH'] ||= `git log -1 --format=%cd --date=unix`.chomp
10
+
6
11
  RSpec::Core::RakeTask.new(:spec)
7
12
 
8
13
  require 'rubocop/rake_task'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Easyship
4
- VERSION = '0.4.0'
4
+ VERSION = '0.5.1'
5
5
  end
metadata CHANGED
@@ -1,11 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easyship
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Marusyk
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
10
  date: 2026-01-24 00:00:00.000000000 Z
@@ -70,7 +69,6 @@ metadata:
70
69
  allowed_push_host: https://rubygems.org
71
70
  source_code_uri: https://github.com/mmarusyk/easyship
72
71
  changelog_uri: https://github.com/mmarusyk/easyship/blob/main/CHANGELOG.md
73
- post_install_message:
74
72
  rdoc_options: []
75
73
  require_paths:
76
74
  - lib
@@ -78,15 +76,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
78
76
  requirements:
79
77
  - - ">="
80
78
  - !ruby/object:Gem::Version
81
- version: 3.0.0
79
+ version: 3.2.0
82
80
  required_rubygems_version: !ruby/object:Gem::Requirement
83
81
  requirements:
84
82
  - - ">="
85
83
  - !ruby/object:Gem::Version
86
84
  version: '0'
87
85
  requirements: []
88
- rubygems_version: 3.5.22
89
- signing_key:
86
+ rubygems_version: 4.0.3
90
87
  specification_version: 4
91
88
  summary: A Ruby client for integrating with Easyship's API for shipping and logistics
92
89
  management.