Skip to content

Commit 320bc47

Browse files
committedMar 17, 2022
release 3.6.0
## 3.6.0 2022-03-17 ### Added - Composer dev dependencies can optionally be included in enumerated PHP dependencies (:tada: `@digilist` #486) - Getting started usage documentation (#483) - Initial support for NPM workspaces (#485) ### Changed - Transitive dependencies are now enumerated by the `pip` source (#480) ### Fixed - `licensed cache --force` will now correctly overwrite existing license classifications (#473)
1 parent c26b75f commit 320bc47

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed
 

‎CHANGELOG.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## 3.6.0
10+
11+
2022-03-17
12+
13+
### Added
14+
15+
- Composer dev dependencies can optionally be included in enumerated PHP dependencies (:tada: @digilist https://github.com/github/licensed/pull/486)
16+
- Getting started usage documentation (https://github.com/github/licensed/pull/483)
17+
- Initial support for NPM workspaces (https://github.com/github/licensed/pull/485)
18+
19+
### Changed
20+
21+
- Transitive dependencies are now enumerated by the `pip` source (https://github.com/github/licensed/pull/480)
22+
23+
### Fixed
24+
25+
- `licensed cache --force` will now correctly overwrite existing license classifications (https://github.com/github/licensed/pull/473)
26+
927
## 3.5.0
1028

1129
2022-02-24
@@ -579,4 +597,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
579597

580598
Initial release :tada:
581599

582-
[Unreleased]: https://github.com/github/licensed/compare/3.4.4...HEAD
600+
[Unreleased]: https://github.com/github/licensed/compare/3.6.0...HEAD

‎lib/licensed/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22
module Licensed
3-
VERSION = "3.5.0".freeze
3+
VERSION = "3.6.0".freeze
44

55
def self.previous_major_versions
66
major_version = Gem::Version.new(Licensed::VERSION).segments.first

0 commit comments

Comments
 (0)
Please sign in to comment.