Skip to content

Commit

Permalink
Update version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
scana committed Mar 7, 2022
1 parent e86170c commit f52436a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ Plugin for downloading and uploading translations from <a href="https://www.ones
</p>

<p align="center">
<img src="https://img.shields.io/badge/version-1.2.0-blue.svg">
<img src="https://img.shields.io/badge/version-1.3.0-blue.svg">
</p>

## Installation

**app/build.gradle.kts**
```kotlin
plugins {
id("co.brainly.onesky") version "1.2.0"
id("co.brainly.onesky") version "1.3.0"
}

// ...
Expand All @@ -21,12 +21,14 @@ configure<OneSkyPluginExtension> {
apiKey = "your-api-key"
apiSecret = "your-api-secret"
projectId = <your_project_id>

// list of files to sync in your src/main/res/values directory,
// e.g.: listOf("strings.xml", "plurals.xml")
sourceStringFiles = emptyList()
sourcePath = "path-to-your-string-values-directory"
// has src/main/res/ as a default value,

// has src/main/res/ as a default value,
// can be overriden with your custom path (optional)
sourcePath = "path-to-your-string-values-directory"
}
```

Expand Down
2 changes: 1 addition & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
apply(plugin = "org.jlleitschuh.gradle.ktlint")

group = "co.brainly"
version = "1.2.0"
version = "1.3.0"

gradlePlugin {
plugins {
Expand Down

0 comments on commit f52436a

Please sign in to comment.