easyship 0.4.0 → 0.5.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 +4 -4
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +13 -0
- data/README.md +1 -1
- data/lib/easyship/version.rb +1 -1
- metadata +4 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 76c2be2552b4b07d67baed13c5af58baeb16a353a3db70f643039cf4ca8a44c5
|
|
4
|
+
data.tar.gz: 8425c6a8d64e7218c85ed0e5935f19ce39052039fade759c41faf75418228928
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dd70aee49496f5b75ae4ddc132ac8895f544206100fdfccf289a204a92b4a55724a45fb60d0b547c26a277081e1f579c8a6975baa71d33465d6cdc74d93c1105
|
|
7
|
+
data.tar.gz: a650c459e237f215013c464cc4b6891ea00423393134e4c410067db54902c503971546aff51b094d1cd1fb019d227b7bd97f49d66de25726a4f230875b9eb48a
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,23 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [v0.5.0](https://github.com/mmarusyk/easyship/tree/v0.5.0) - 2026-01-24
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- Ruby 4.0 support
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
- **BREAKING**: Minimum Ruby version increased from 3.0.0 to 3.2.0
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Updated unicode-emoji to 4.2.0 for Ruby 4.0 compatibility
|
|
14
|
+
|
|
3
15
|
## [v0.4.0](https://github.com/mmarusyk/easyship/tree/v0.4.0) - 2026-01-24
|
|
4
16
|
|
|
5
17
|
### Added
|
|
6
18
|
- Support for custom headers by @mmarusyk in https://github.com/mmarusyk/easyship/pull/14
|
|
7
19
|
|
|
20
|
+
|
|
8
21
|
## [v0.3.0](https://github.com/mmarusyk/easyship/tree/v0.3.0) - 2025-11-29
|
|
9
22
|
|
|
10
23
|
### 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.
|
|
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/lib/easyship/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: easyship
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Marusyk
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: faraday
|
|
@@ -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.
|
|
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:
|
|
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.
|