Skip to content

Commit

Permalink
Bump to 1.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Dushyanth Maguluru committed May 13, 2017
1 parent 8b6730a commit 295d2b4
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## [1.9.2] - May 13, 2017
* Add support for AZTEC codes in ZXing: #299, #288.

## [1.9.1] - April 8, 2017
* Add ability to scan inverted/negative codes with ZXing. Thanks to @manijshrestha for this pull request #265

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Installation

Add the following dependency to your build.gradle file.

`compile 'me.dm7.barcodescanner:zxing:1.9.1'`
`compile 'me.dm7.barcodescanner:zxing:1.9.2'`

Simple Usage
------------
Expand Down Expand Up @@ -126,7 +126,7 @@ Installation

Add the following dependency to your build.gradle file.

`compile 'me.dm7.barcodescanner:zbar:1.9.1'`
`compile 'me.dm7.barcodescanner:zbar:1.9.2'`

Simple Usage
------------
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {

allprojects {
group = 'me.dm7.barcodescanner'
version = '1.9.1'
version = '1.9.2'

repositories {
mavenCentral()
Expand Down Expand Up @@ -44,8 +44,8 @@ subprojects {
defaultConfig {
minSdkVersion versions.min_sdk
targetSdkVersion versions.target_sdk
versionCode 191
versionName "1.9.1"
versionCode 192
versionName "1.9.2"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ext.versions = [
build_tools : "25.0.2",
support_lib : "25.3.1",
zxing : "3.3.0",
barcodescanner: "1.9.1"
barcodescanner: "1.9.2"
]

ext.libraries = [
Expand All @@ -16,4 +16,4 @@ ext.libraries = [
barcodescanner_core : "me.dm7.barcodescanner:core:$versions.barcodescanner",
barcodescanner_zbar : "me.dm7.barcodescanner:zbar:$versions.barcodescanner",
barcodescanner_zxing: "me.dm7.barcodescanner:zxing:$versions.barcodescanner"
]
]
2 changes: 1 addition & 1 deletion zxing-sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'

dependencies {
// compile project(":zxing")
//compile project(":zxing")
compile libraries.barcodescanner_zxing
compile libraries.support_v4
compile libraries.appcompat_v7
Expand Down

0 comments on commit 295d2b4

Please sign in to comment.