Skip to content

Releases: WildMeOrg/wildbook-ia

Release 4.0.4

25 Apr 06:48
6ab9eaf
Compare
Choose a tag to compare
  • Stabilize dependency versions to prevent nightly builds from breaking
  • Add new ArcFace-based plugin integration

Version 4.0.0

07 Dec 23:23
54e1b62
Compare
Choose a tag to compare
v4.0.0

Updates for Flann and Prometheus monitoring

Wildbook IA Version 3.7.1

20 Sep 21:47
0528c9e
Compare
Choose a tag to compare

This release of Wildbook IA includes incremental updates and bug improvements.

Wildbook IA Version 3.7.0

20 Sep 18:37
c0650c8
Compare
Choose a tag to compare

This release of Wildbook IA includes incremental updates and bug improvements.

Wildbook IA Version 3.6.0

25 May 00:48
8f31c16
Compare
Choose a tag to compare

This release offers updated EXIF handling and improved support for new species.

Wildbook IA Version 3.4.0

28 Jan 22:26
e9af3b2
Compare
Choose a tag to compare

This release of Wildbook IA adds full PostGRES support for all primary, staging, and dependency cache database files. All existing databases using SQLite3 are still supported and will remain supported as the preferred database engine for WBIA.

Wildbook IA Version 3.3.3

23 Dec 19:26
Compare
Choose a tag to compare

This release of Wildbook IA includes incremental updates and bug improvements.

Wildbook IA Version 3.3.2

13 Oct 22:51
c3a37cd
Compare
Choose a tag to compare

This release of Wildbook IA includes incremental updates and bug improvements. Most notably it bundles the web templates into the PyPI package.

v3.3.1: Update pinning of wbia-utool

24 Sep 20:34
Compare
Choose a tag to compare
`utool.experimental` is required by some of the `wbia_cnn` code. Tests
won't pass unless this import is resolved. wbia-utool==3.3.0 contains
the fix to include the `experimental` subpackage.

v3.3.0: Remove trailing commas to avoid black expanding code

24 Sep 04:59
Compare
Choose a tag to compare
From black 20.8b0's changelog:

```
re-implemented support for explicit trailing commas: now it works
consistently within any bracket pair, including nested structures (#1288
and duplicates)
```

We have lots of trailing commas throughout our source code and it causes
changes like this:

```
-    print('Brambox: %r, %r' % (brambox.__version__, brambox.__file__,))
+    print(
+        'Brambox: %r, %r'
+        % (
+            brambox.__version__,
+            brambox.__file__,
+        )
+    )
```

which adds lots of lines for no reason.  There are more extreme cases that make
the code less readable after black reformats the code.  The only way to avoid
this is to remove trailing commas.