Skip to content

Commit 84d9f3d

Browse files
committed
Release version 1.5.11
1 parent 82a4469 commit 84d9f3d

File tree

5 files changed

+21
-16
lines changed

5 files changed

+21
-16
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11

2+
### November 16, 2024 version 1.5.11
23
* Fix memory leak in `FFmpegFrameGrabber` when decoding from `InputStream` ([pull #2214](https://github.com/bytedeco/javacv/pull/2214))
34
* Upgrade dependencies for OpenBLAS 0.3.28, OpenCV 4.10.0, FFmpeg 7.1, Leptonica 1.85.0, Tesseract 5.5.0
45

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,27 @@ We can also have everything downloaded and installed automatically with:
2828
<dependency>
2929
<groupId>org.bytedeco</groupId>
3030
<artifactId>javacv-platform</artifactId>
31-
<version>1.5.10</version>
31+
<version>1.5.11</version>
3232
</dependency>
3333
```
3434

3535
* Gradle (inside the `build.gradle.kts` or `build.gradle` file)
3636
```groovy
3737
dependencies {
38-
implementation("org.bytedeco:javacv-platform:1.5.10")
38+
implementation("org.bytedeco:javacv-platform:1.5.11")
3939
}
4040
```
4141

4242
* Leiningen (inside the `project.clj` file)
4343
```clojure
4444
:dependencies [
45-
[org.bytedeco/javacv-platform "1.5.10"]
45+
[org.bytedeco/javacv-platform "1.5.11"]
4646
]
4747
```
4848

4949
* sbt (inside the `build.sbt` file)
5050
```scala
51-
libraryDependencies += "org.bytedeco" % "javacv-platform" % "1.5.10"
51+
libraryDependencies += "org.bytedeco" % "javacv-platform" % "1.5.11"
5252
```
5353

5454
This downloads binaries for all platforms, but to get binaries for only one platform we can set the `javacpp.platform` system property (via the `-D` command line option) to something like `android-arm`, `linux-x86_64`, `macosx-x86_64`, `windows-x86_64`, etc. Please refer to the [README.md file of the JavaCPP Presets](https://github.com/bytedeco/javacpp-presets#downloads) for details. Another option available to Gradle users is [Gradle JavaCPP](https://github.com/bytedeco/gradle-javacpp), and similarly for Scala users there is [SBT-JavaCV](https://github.com/bytedeco/sbt-javacv).
@@ -270,7 +270,7 @@ Furthermore, after creating a `pom.xml` file with the following content:
270270
<modelVersion>4.0.0</modelVersion>
271271
<groupId>org.bytedeco.javacv</groupId>
272272
<artifactId>demo</artifactId>
273-
<version>1.5.10</version>
273+
<version>1.5.11</version>
274274
<properties>
275275
<maven.compiler.source>1.7</maven.compiler.source>
276276
<maven.compiler.target>1.7</maven.compiler.target>
@@ -279,21 +279,21 @@ Furthermore, after creating a `pom.xml` file with the following content:
279279
<dependency>
280280
<groupId>org.bytedeco</groupId>
281281
<artifactId>javacv-platform</artifactId>
282-
<version>1.5.10</version>
282+
<version>1.5.11</version>
283283
</dependency>
284284

285285
<!-- Additional dependencies required to use CUDA and cuDNN -->
286286
<dependency>
287287
<groupId>org.bytedeco</groupId>
288288
<artifactId>opencv-platform-gpu</artifactId>
289-
<version>4.9.0-1.5.10</version>
289+
<version>4.10.0-1.5.11</version>
290290
</dependency>
291291

292292
<!-- Optional GPL builds with (almost) everything enabled -->
293293
<dependency>
294294
<groupId>org.bytedeco</groupId>
295295
<artifactId>ffmpeg-platform-gpl</artifactId>
296-
<version>6.1.1-1.5.10</version>
296+
<version>7.1-1.5.11</version>
297297
</dependency>
298298
</dependencies>
299299
<build>
@@ -315,8 +315,8 @@ Build Instructions
315315
If the binary files available above are not enough for your needs, you might need to rebuild them from the source code. To this end, the project files were created for:
316316

317317
* Maven 3.x http://maven.apache.org/download.html
318-
* JavaCPP 1.5.10 https://github.com/bytedeco/javacpp
319-
* JavaCPP Presets 1.5.10 https://github.com/bytedeco/javacpp-presets
318+
* JavaCPP 1.5.11 https://github.com/bytedeco/javacpp
319+
* JavaCPP Presets 1.5.11 https://github.com/bytedeco/javacpp-presets
320320

321321
Once installed, simply call the usual `mvn install` command for JavaCPP, its Presets, and JavaCV. By default, no other dependencies than a C++ compiler for JavaCPP are required. Please refer to the comments inside the `pom.xml` files for further details.
322322

platform/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.bytedeco</groupId>
88
<artifactId>javacpp-presets</artifactId>
9-
<version>1.5.11-SNAPSHOT</version>
9+
<version>1.5.11</version>
1010
<relativePath></relativePath>
1111
</parent>
1212

pom.xml

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.bytedeco</groupId>
66
<artifactId>javacv</artifactId>
7-
<version>1.5.11-SNAPSHOT</version>
7+
<version>1.5.11</version>
88

99
<name>JavaCV</name>
1010
<description>Java interface to OpenCV, FFmpeg, and more</description>
@@ -261,6 +261,10 @@
261261
<artifactId>maven-source-plugin</artifactId>
262262
<version>3.3.0</version>
263263
<executions>
264+
<execution>
265+
<id>attach-sources</id>
266+
<phase>leave-disabled-to-not-generate-sources-twice-on-release</phase>
267+
</execution>
264268
<execution>
265269
<id>attach-source</id>
266270
<goals>

samples/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>org.bytedeco.javacv</groupId>
44
<artifactId>demo</artifactId>
5-
<version>1.5.10</version>
5+
<version>1.5.11</version>
66
<properties>
77
<maven.compiler.source>1.7</maven.compiler.source>
88
<maven.compiler.target>1.7</maven.compiler.target>
@@ -11,21 +11,21 @@
1111
<dependency>
1212
<groupId>org.bytedeco</groupId>
1313
<artifactId>javacv-platform</artifactId>
14-
<version>1.5.10</version>
14+
<version>1.5.11</version>
1515
</dependency>
1616

1717
<!-- Additional dependencies required to use CUDA and cuDNN -->
1818
<dependency>
1919
<groupId>org.bytedeco</groupId>
2020
<artifactId>opencv-platform-gpu</artifactId>
21-
<version>4.9.0-1.5.10</version>
21+
<version>4.10.0-1.5.11</version>
2222
</dependency>
2323

2424
<!-- Optional GPL builds with (almost) everything enabled -->
2525
<dependency>
2626
<groupId>org.bytedeco</groupId>
2727
<artifactId>ffmpeg-platform-gpl</artifactId>
28-
<version>6.1.1-1.5.10</version>
28+
<version>7.1-1.5.11</version>
2929
</dependency>
3030
</dependencies>
3131
<build>

0 commit comments

Comments
 (0)