diff --git a/apriltag/build.gradle b/apriltag/build.gradle index edb50b7..0569828 100644 --- a/apriltag/build.gradle +++ b/apriltag/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'com.android.library' ext { PUBLISH_GROUP_ID = 'org.openftc' PUBLISH_ARTIFACT_ID = 'apriltag' - PUBLISH_VERSION = '1.1.0' + PUBLISH_VERSION = '1.1.1' PUBLISH_DESC = 'EOCV-AprilTag-Plugin' PUBLISH_URL = 'https://github.com/OpenFTC/EOCV-AprilTag-Plugin' diff --git a/readme.md b/readme.md index 2ece61a..19452a8 100644 --- a/readme.md +++ b/readme.md @@ -15,7 +15,7 @@ A plug and play module for detecting AprilTags on an FTC robot, designed to be u 3. At the bottom, add this: dependencies { - implementation 'org.openftc:apriltag:1.1.0' + implementation 'org.openftc:apriltag:1.1.1' } 4. Now perform a Gradle Sync: @@ -32,6 +32,13 @@ Alternatively, you can find PNGs [here](https://github.com/AprilRobotics/aprilta ## Changelog: +### v1.1.1 + + - Fixes OpenCV-Repackaged dependency to be `compileOnly` + - Removes need to link against OpenCV native library + - Fixes buffer overrun when creating JNI detector context + - Prints library version in static initializer + ### v1.1.0 - Updates to latest version of AprilTag as of 30 March 2022