Skip to content

Commit

Permalink
Merge pull request #611 from github/release-4.0.2
Browse files Browse the repository at this point in the history
Release 4.0.2
  • Loading branch information
jonabc authored Jan 11, 2023
2 parents ca27420 + 2ecb2fc commit 1068f97
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## 4.0.2

### Fixed

- The path to a gradlew executable can be configured when enumerating gradle dependencies (:tada: @LouisBoudreau https://github.com/github/licensed/pull/610)

## 4.0.1

### Fixed
Expand Down Expand Up @@ -683,4 +689,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.0.1...HEAD
[Unreleased]: https://github.com/github/licensed/compare/4.0.2...HEAD
7 changes: 4 additions & 3 deletions docs/sources/gradle.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ gradle:
- runtime
- runtimeClassPath
```
### Multi-build projects
To run `licensed` for specific projects in a [multi-build project](https://docs.gradle.org/current/userguide/multi_project_builds.html) you must specify the [apps](../configuration/application_source.md) configuration key.
Expand All @@ -23,11 +24,11 @@ apps:
- source_path: ./path/to/subproject
```

### Gradlew
### Gradlew

The `gradle.gradlew` property is used to determine where the `gradlew` executable is. The default location the [configuration root](../configuration/configuration_root.md).

```yml
gradle:
- gradlew: path/from/root/to/gradle/gradlew
```
gradlew: path/from/root/to/gradle/gradlew
```
2 changes: 1 addition & 1 deletion lib/licensed/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true
module Licensed
VERSION = "4.0.1".freeze
VERSION = "4.0.2".freeze

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

0 comments on commit 1068f97

Please sign in to comment.