Skip to content

Commit

Permalink
Bump version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Orhan Obut committed Dec 27, 2016
1 parent 3a31f48 commit c2c33e2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
## CHANGELOG
### 1.3.0
- Remove super attribute is added.
```java
@RemoveSuperAttribute("key")
public void foo(){}
```
or
```java
tracker.removeSuperAttribute("key")
```

### 1.2.0 released

### 1.1.24-SNAPSHOT
Expand Down
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ Add the following code block to in your app/build.gradle.
buildscript {
...
dependencies {
classpath 'com.orhanobut.tracklytics:tracklytics-plugin:1.2.0'
classpath 'com.orhanobut.tracklytics:tracklytics-plugin:1.3.0'
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=1.2.0
VERSION_NAME=1.3.0
GROUP=com.orhanobut.tracklytics

POM_DESCRIPTION=Android analytics tracker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class TracklyticsPlugin implements Plugin<Project> {

project.dependencies {
compile 'org.aspectj:aspectjrt:1.8.6'
compile 'com.orhanobut.tracklytics:tracklytics-runtime:1.2.0@aar'
compile 'com.orhanobut.tracklytics:tracklytics-runtime:1.3.0@aar'
}

variants.all { variant ->
Expand Down

0 comments on commit c2c33e2

Please sign in to comment.