Skip to content

Commit 7904c95

Browse files
committed
📝 Update copyright years
1 parent 40fdcc6 commit 7904c95

File tree

4 files changed

+30
-11
lines changed

4 files changed

+30
-11
lines changed

CHANGELOG.md

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,25 @@ Please file a bug if you notice a violation of semantic versioning.
2020

2121
### Added
2222

23+
### Changed
24+
25+
### Deprecated
26+
27+
### Removed
28+
29+
### Fixed
30+
31+
### Security
32+
33+
## [1.0.6] - 2025-09-21
34+
35+
- TAG: [v1.0.6][1.0.6t]
36+
- COVERAGE: 100.00% -- 296/296 lines in 10 files
37+
- BRANCH COVERAGE: 96.55% -- 28/29 branches in 10 files
38+
- 11.43% documented
39+
40+
### Added
41+
2342
- (dev) kettle-dev v1.1.16 (@pboling)
2443
- (docs) more documentation (@Aboling0, @pboling)
2544
- (docs) Deployed documentation site for HEAD (@Aboling0)
@@ -36,8 +55,6 @@ Please file a bug if you notice a violation of semantic versioning.
3655
- (test) migrated test suite to RSpec (@pboling)
3756
- (test) ignore Ruby warnings coming from other libs (@pboling)
3857

39-
### Deprecated
40-
4158
### Removed
4259

4360
- (test) minitest (@pboling)
@@ -48,8 +65,6 @@ Please file a bug if you notice a violation of semantic versioning.
4865
- Use Shellwords for proper tokenization
4966
- Verified options file loading and CLI flag precedence
5067

51-
### Security
52-
5368
## [1.0.5] - 2022-09-20
5469

5570
- TAG: [v1.0.5][1.0.5t]
@@ -109,7 +124,9 @@ Please file a bug if you notice a violation of semantic versioning.
109124

110125
- Initial release (@pboling)
111126

112-
[Unreleased]: https://gitlab.com/ruby-oauth/oauth-tty/-/compare/v1.0.5...main
127+
[Unreleased]: https://github.com/ruby-oauth/oauth-tty/compare/v1.0.6...HEAD
128+
[1.0.6]: https://github.com/ruby-oauth/oauth-tty/compare/v1.0.5...v1.0.6
129+
[1.0.6t]: https://github.com/ruby-oauth/oauth-tty/releases/tag/v1.0.6
113130
[1.0.5]: https://gitlab.com/ruby-oauth/oauth-tty/-/compare/v1.0.4...v1.0.5
114131
[1.0.5t]: https://gitlab.com/ruby-oauth/oauth-tty/-/releases/tag/v1.0.5
115132
[1.0.4]: https://gitlab.com/ruby-oauth/oauth-tty/-/compare/v1.0.3...v1.0.4

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ GIT
2323
PATH
2424
remote: .
2525
specs:
26-
oauth-tty (1.0.5)
26+
oauth-tty (1.0.6)
2727
version_gem (~> 1.1, >= 1.1.9)
2828

2929
GEM

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,12 @@
2424
OAuth 1.0a is an industry-standard protocol for authorization.
2525
It is an update to the original OAuth 1.0 protocol, and is used by many popular services.
2626

27-
This is a RubyGem for implementing OAuth 1.0 or 1.0a _clients_ and _servers_ in Ruby applications.
28-
See the sibling `oauth2` gem for OAuth 2.0, 2.1, & OIDC clients in Ruby.
27+
This RubyGem provides a CLI for OAuth 1.0 or 1.0a _clients_ and _servers_ in Ruby applications.
2928

3029
All dependencies of this gem are signed, so it can be installed with a `HighSecurity` profile.
3130

3231
* [OAuth 1.0 Spec][oauth1-spec]
33-
* [oauth gem][sibling-gem] for OAuth 1.0 / 1.0a client and server implementations in Ruby.
32+
* [oauth sibling gem][sibling-gem] for OAuth 1.0 / 1.0a client and server implementations in Ruby.
3433
* [oauth2 sibling gem][sibling2-gem] for OAuth 2.0 / 2.1, & OIDC client implementations in Ruby.
3534

3635
[oauth1-spec]: http://oauth.net/core/1.0/
@@ -449,14 +448,17 @@ See [LICENSE.txt][📄license] for the official [Copyright Notice][📄copyright
449448

450449
<ul>
451450
<li>
452-
Copyright (c) 2023, 2025 Peter H. Boling, of
451+
Copyright (c) 2021-2022, 2025 Peter H. Boling, of
453452
<a href="https://discord.gg/3qme4XHNKN">
454453
Galtzo.com
455454
<picture>
456455
<img src="https://logos.galtzo.com/assets/images/galtzo-floss/avatar-128px-blank.svg" alt="Galtzo.com Logo (Wordless) by Aboling0, CC BY-SA 4.0" width="24">
457456
</picture>
458457
</a>, and oauth-tty contributors.
459458
</li>
459+
<li>
460+
2016-2017 Thiago Pinto
461+
</li>
460462
</ul>
461463

462464
## 🤑 A request for help

lib/oauth/tty/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module OAuth
44
module TTY
55
module Version
6-
VERSION = "1.0.5"
6+
VERSION = "1.0.6"
77
end
88
end
99
end

0 commit comments

Comments
 (0)