net-hippie 1.0.0 → 1.0.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 +4 -4
- data/CHANGELOG.md +7 -2
- data/lib/net/hippie.rb +1 -1
- data/lib/net/hippie/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f1a9f93f24017a895ff282243d18635f7f8cba093d0c8dcf07eefb13bf03cc84
|
4
|
+
data.tar.gz: 791f658b65c6eadd89ae1186bb741e2a6b221f8f4525ebeace5d0452049b2cba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '07954654db72141c0f24fc56d0bea0afd5d2f8bfe90de8d69487c25b2f46a6491f87be2cfe8cb52e5874558b1beec03632f0c8b50856a8248151ff76044d7bba'
|
7
|
+
data.tar.gz: 7d42be042781637d66038aac71b4a4fc2bb8db7d5479bedf12edf62dd04c232f598071f38c566318ebcb1779ed9ab8a9aee6de0ee2e27d66e321e377cd6f1db6
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Version 1.0.
|
1
|
+
Version 1.0.1
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
All notable changes to this project will be documented in this file.
|
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
8
8
|
|
9
9
|
## [Unreleased]
|
10
10
|
|
11
|
+
## [1.0.1] - 2020-07-31
|
12
|
+
### Fixed
|
13
|
+
- Load version before client
|
14
|
+
|
11
15
|
## [1.0.0] - 2020-07-31
|
12
16
|
### Added
|
13
17
|
- Add simpler API to remove the need to instantiate a `Client` directly.
|
@@ -69,7 +73,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
69
73
|
- with\_retry.https://www.mokhan.ca/%F0%9F%92%8E/2018/11/10/net-hippie-0-2-0.html
|
70
74
|
- authorization header helpers
|
71
75
|
|
72
|
-
[Unreleased]: https://github.com/mokhan/net-hippie/compare/v1.0.
|
76
|
+
[Unreleased]: https://github.com/mokhan/net-hippie/compare/v1.0.1...HEAD
|
77
|
+
[1.0.1]: https://github.com/mokhan/net-hippie/compare/v1.0.0...v1.0.1
|
73
78
|
[1.0.0]: https://github.com/mokhan/net-hippie/compare/v0.3.2...v1.0.0
|
74
79
|
[0.3.2]: https://github.com/mokhan/net-hippie/compare/v0.3.1...v0.3.2
|
75
80
|
[0.3.1]: https://github.com/mokhan/net-hippie/compare/v0.3.0...v0.3.1
|
data/lib/net/hippie.rb
CHANGED
@@ -6,10 +6,10 @@ require 'logger'
|
|
6
6
|
require 'net/http'
|
7
7
|
require 'openssl'
|
8
8
|
|
9
|
+
require 'net/hippie/version'
|
9
10
|
require 'net/hippie/client'
|
10
11
|
require 'net/hippie/connection'
|
11
12
|
require 'net/hippie/content_type_mapper'
|
12
|
-
require 'net/hippie/version'
|
13
13
|
|
14
14
|
module Net
|
15
15
|
# net/http for hippies.
|
data/lib/net/hippie/version.rb
CHANGED