Skip to content

Commit

Permalink
1.4.0: Update Event-Emitter to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhuinden committed Dec 24, 2023
1 parent 4ac2bd4 commit 8a51709
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change log

-Live-Event 1.4.0 (2023-12-24)
--------------------------------
- Update event-emitter to 1.4.0.

-Live-Event 1.3.0 (2022-08-13)
--------------------------------
- Update event-emitter to 1.3.0.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dependencyResolutionManagement {

and add the compile dependency to your module level gradle.

implementation 'com.github.Zhuinden:live-event:1.3.0'
implementation 'com.github.Zhuinden:live-event:1.4.0'

## License

Expand Down
8 changes: 4 additions & 4 deletions live-event/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'kotlin-android'
apply plugin: 'maven-publish'

group = "com.github.Zhuinden.live-event"
version = "1.3.0"
version = "1.4.0"


android {
Expand Down Expand Up @@ -33,7 +33,7 @@ dependencies {
api "com.google.code.findbugs:jsr305:3.0.2"
api "androidx.lifecycle:lifecycle-runtime-ktx:2.2.0"
api "androidx.lifecycle:lifecycle-livedata-ktx:2.2.0"
api('com.github.Zhuinden:event-emitter:1.3.0') {
api('com.github.Zhuinden:event-emitter:1.4.0') {
transitive = true
}

Expand Down Expand Up @@ -86,7 +86,7 @@ afterEvaluate {
// You can then customize attributes of the publication as shown below.
groupId = 'com.github.Zhuinden'
artifactId = 'live-event'
version = '1.3.0'
version = '1.4.0'

pom.withXml {
def dependenciesNode = (asNode().get("dependencies") as groovy.util.NodeList).get(0) as groovy.util.Node
Expand All @@ -107,7 +107,7 @@ afterEvaluate {
def dependencyNode = dependenciesNode.appendNode("dependency")
dependencyNode.appendNode("groupId", "com.github.Zhuinden")
dependencyNode.appendNode("artifactId", "event-emitter")
dependencyNode.appendNode("version", "1.3.0")
dependencyNode.appendNode("version", "1.4.0")

def dependencyNode2 = dependenciesNode.appendNode("dependency")
dependencyNode2.appendNode("groupId", "com.github.Zhuinden")
Expand Down
4 changes: 2 additions & 2 deletions local.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
# Location of the SDK. This is only used by Gradle.
# For customization when using a Version Control System, please read the
# header note.
#Fri Oct 23 14:34:31 CEST 2020
sdk.dir=G\:\\Android\\sdk
#Wed Mar 29 13:00:51 CEST 2023
sdk.dir=C\:\\Work\\Android_SDK

0 comments on commit 8a51709

Please sign in to comment.