Skip to content

Commit

Permalink
Prepare for release 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmfayard committed Aug 3, 2021
1 parent 6873118 commit 4bb7011
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 4 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Change log for refreshVersions

## Version 0.11.0 (2021-08-03)

### New feature

Add task **refreshVersionsMigrate** that adds all missing entries in versions.properties and try to migrate the `build.gradle(.kts)` and other known files like `libraries.gradle` so that the version placeholder `_` is used everywhere. Please [try it out and give us your feedback for refreshVersionsMigrate](https://github.com/jmfayard/refreshVersions/discussions/396)

### Fixes

- Plugins org.jetbrains.kotlinx.benchmark should not use key version.kotlin

### New dependency notations

- Ktor.features.serialization
- AndroidX.navigation.testing
- Testing.kotestExtensions who replaces Testing.kotest.extensions in Kotest >= 4.5.0



## Version 0.10.1 (2021-06-10)

### New features
Expand Down
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

> Life is too short to google for dependencies and versions
### Usage

```kotlin
// settings.gradle(.kts)
plugins {
// See https://jmfayard.github.io/refreshVersions
id("de.fayard.refreshVersions") version "0.11.0"
}

refreshVersions { // Optional: configure the plugin

}

// Migrate project
./gradlew refreshVersionsMigrate

// Find available updates in versions.properties
./gradlew refreshVersions

// Cleanup versions availability comments
./gradlew refreshVersionsCleanup
```

### Documentation is at [jmfayard.github.io/refreshVersions](https://jmfayard.github.io/refreshVersions/)

[![](https://raw.githubusercontent.com/jmfayard/refreshVersions/main/docs/img/screencast.png)](http://www.youtube.com/watch?v=VhYERonB8co "Gradle refreshVersions")
2 changes: 1 addition & 1 deletion Releasing.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
@file:Repository("https://repo.maven.apache.org/maven2/")
//@file:Repository("https://oss.sonatype.org/content/repositories/snapshots")
//@file:Repository("file:///Users/louiscad/.m2/repository")
@file:DependsOn("com.louiscad.incubator:lib-publishing-helpers:0.1.4")
@file:DependsOn("com.louiscad.incubator:lib-publishing-helpers:0.2.1")

import java.io.File
import Releasing_main.ReleaseStep.*
Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ extra:
slack: https://app.slack.com/client/T09229ZC6/CP5659EL9
version:
gradle: 6.9
refreshVersions: '0.10.1'
snapshot: '0.10.2-SNAPSHOT'
refreshVersions: '0.11.0'
snapshot: '0.11.1-SNAPSHOT'
keyboard_shortcuts:
find_actions: <kbd>ctrl</kbd>/<kbd>cmd</kbd> + <kbd>shift</kbd> + <kbd>A</kbd>

Expand Down
4 changes: 4 additions & 0 deletions ongoing_release.tmp.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#Tue Aug 03 17:20:46 CEST 2021
currentStepName=Commit "prepare for release" and tag
versionBeforeRelease=0.10.2-SNAPSHOT
newVersion=0.11.0
2 changes: 1 addition & 1 deletion plugins/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.2-SNAPSHOT
0.11.0

0 comments on commit 4bb7011

Please sign in to comment.