Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump up to 1.2.0 #18

Merged
merged 1 commit into from
Sep 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [1.2.0] - 2021-09-24

- Update Gradle to 6.9
- Update Kotlin to 1.4.20
- Add changing `.env` file feature
- If environment variable `ENV_FILE` is set, The plugin read a file specified `ENV_FILE` instead of `.env` file.
## Added

- Changing `.env` file [#14](https://github.com/uzzu/dotenv-gradle/issues/14)
- If environment variable `ENV_FILE` is set, The plugin read a file specified `ENV_FILE` instead of `.env` file.

## Changed

- Update Gradle to 6.6
- Update Kotlin to 1.3.72
- Update Gradle to 6.9
- Update Kotlin to 1.4.20

## [1.1.0] - 2020-04-21

Expand Down
2 changes: 1 addition & 1 deletion examples/basic/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
base
id("co.uzzu.dotenv.gradle") version "1.1.0"
id("co.uzzu.dotenv.gradle") version "1.2.0"
}

println(env.FOO.orElse("default_foo"))
Expand Down
2 changes: 1 addition & 1 deletion examples/change_file/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
base
id("co.uzzu.dotenv.gradle") version "1.1.0"
id("co.uzzu.dotenv.gradle") version "1.2.0"
}

println(env.FOO.value)
2 changes: 1 addition & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ tasks {
object Artifact {
val groupId = "co.uzzu.dotenv"
val artifactId = "gradle"
val version = "1.1.0"
val version = "1.2.0"
}

group = Artifact.groupId
Expand Down