diff --git a/CHANGELOG.md b/CHANGELOG.md
index f7275e461..f249162ac 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,6 @@
+### October 15, 2018 version 1.4.3
+ * Add support for `linux-mips64el` with `linux-mips64el.properties` ([pull #268](https://github.com/bytedeco/javacpp/pull/268))
* Enhance `Generator` with `@ByPtr` for primitive types and `@NoException` for `FunctionPointer` methods
* Add `BooleanPointer` and `BooleanIndexer` to access arrays of boolean values with `sizeof(jboolean) == 1`
* Let `Parser` skip over `static_assert()` declarations of C++11
diff --git a/README.md b/README.md
index 6eee73b1a..503f72dc4 100644
--- a/README.md
+++ b/README.md
@@ -17,8 +17,8 @@ Please feel free to ask questions on [the mailing list](http://groups.google.com
Downloads
---------
- * JavaCPP 1.4.2 binary archive [javacpp-1.4.2-bin.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/javacpp/1.4.2/javacpp-1.4.2-bin.zip) (367 KB)
- * JavaCPP 1.4.2 source archive [javacpp-1.4.2-src.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/javacpp/1.4.2/javacpp-1.4.2-src.zip) (335 KB)
+ * JavaCPP 1.4.3 binary archive [javacpp-1.4.3-bin.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/javacpp/1.4.3/javacpp-1.4.3-bin.zip) (379 KB)
+ * JavaCPP 1.4.3 source archive [javacpp-1.4.3-src.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/javacpp/1.4.3/javacpp-1.4.3-src.zip) (348 KB)
We can also have everything downloaded and installed automatically with:
@@ -27,27 +27,27 @@ We can also have everything downloaded and installed automatically with:
org.bytedeco
javacpp
- 1.4.2
+ 1.4.3
```
* Gradle (inside the `build.gradle` file)
```groovy
dependencies {
- compile group: 'org.bytedeco', name: 'javacpp', version: '1.4.2'
+ compile group: 'org.bytedeco', name: 'javacpp', version: '1.4.3'
}
```
* Leiningen (inside the `project.clj` file)
```clojure
:dependencies [
- [org.bytedeco/javacpp "1.4.2"]
+ [org.bytedeco/javacpp "1.4.3"]
]
```
* sbt (inside the `build.sbt` file)
```scala
- libraryDependencies += "org.bytedeco" % "javacpp" % "1.4.2"
+ libraryDependencies += "org.bytedeco" % "javacpp" % "1.4.3"
```
Another option available for Scala users is [sbt-javacpp](https://github.com/bytedeco/sbt-javacpp).
@@ -65,8 +65,8 @@ To use JavaCPP, you will need to download and install the following software:
* GNU C/C++ Compiler (Linux, etc.) http://gcc.gnu.org/
* For Windows x86 and x64 http://mingw-w64.org/
* LLVM Clang (Mac OS X, etc.) http://clang.llvm.org/
- * Microsoft C/C++ Compiler, part of Visual Studio https://www.visualstudio.com/
- * [Walkthrough: Compiling a Native C++ Program on the Command Line](https://msdn.microsoft.com/en-us/library/ms235639.aspx)
+ * Microsoft C/C++ Compiler, part of Visual Studio https://visualstudio.microsoft.com/
+ * https://docs.microsoft.com/en-us/cpp/build/walkthrough-compiling-a-native-cpp-program-on-the-command-line
To produce binary files for Android 4.0 or newer, you will also have to install:
diff --git a/pom.xml b/pom.xml
index 32ef359d7..6b6ef5a8b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
org.bytedeco
javacpp
- 1.4.3-SNAPSHOT
+ 1.4.3
JavaCPP
The missing bridge between Java and native C++