Skip to content

Commit

Permalink
Merge pull request #16 from skydoves/release/1.0.9
Browse files Browse the repository at this point in the history
Release a new stable 1.0.9
  • Loading branch information
skydoves authored Jul 31, 2021
2 parents 234760b + f549a54 commit 469d59e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ allprojects {
And add a dependency code to your **module**'s `build.gradle` file.
```gradle
dependencies {
implementation "com.github.skydoves:bindables:1.0.8"
implementation "com.github.skydoves:bindables:1.0.9"
}
```

Expand Down Expand Up @@ -79,7 +79,7 @@ class MainActivity : BindingActivity<ActivityMainBinding>(R.layout.activity_main
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)

binding.vm = viewModel // we can access a `binding` propety.
binding.vm = viewModel // we can access a `binding` property.

// Base classes provide `binding` scope that has a receiver of the binding property.
// So we don't need to use `with (binding) ...` block anymore.
Expand Down
4 changes: 2 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ ext.versions = [
minSdk : 16,
minSdkDemo : 21,
compileSdk : 30,
versionCode : 1,
versionName : '1.0.0',
versionCode : 10,
versionName : '1.0.9',

gradleBuildTool : '4.1.3',
spotlessGradle : '5.14.0',
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ systemProp.org.gradle.internal.http.socketTimeout=120000
GROUP=com.github.skydoves
POM_PACKAGING=aar

VERSION_NAME=1.0.9-SNAPSHOT
VERSION_NAME=1.1.0-SNAPSHOT

POM_ARTIFACT_ID=bindables
POM_NAME=bindables
Expand Down

0 comments on commit 469d59e

Please sign in to comment.