### Added

- Licensed status command will alert on stale cached dependency records (https://github.com/github/licensed/pull/657)
This commit is contained in:
Jon Ruskin 2023-05-26 09:18:56 -07:00
Родитель 546e8a09fa
Коммит c749c334cd
3 изменённых файлов: 9 добавлений и 3 удалений

Просмотреть файл

@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
## 4.4.0
### Added
- Licensed status command will alert on stale cached dependency records (https://github.com/github/licensed/pull/657)
## 4.3.1
### Changed
@ -735,4 +741,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
Initial release :tada:
[Unreleased]: https://github.com/github/licensed/compare/4.3.1...HEAD
[Unreleased]: https://github.com/github/licensed/compare/4.4.0...HEAD

Просмотреть файл

@ -1,7 +1,7 @@
PATH
remote: .
specs:
licensed (4.3.1)
licensed (4.4.0)
json (~> 2.6)
licensee (~> 9.16)
parallel (~> 1.22)

Просмотреть файл

@ -1,6 +1,6 @@
# frozen_string_literal: true
module Licensed
VERSION = "4.3.1".freeze
VERSION = "4.4.0".freeze
def self.previous_major_versions
major_version = Gem::Version.new(Licensed::VERSION).segments.first