Skip to content

Commit a079acc

Browse files
committed
Merge pull request opencv#21280 from alalek:update_version_3.4.17-pre
2 parents 91817bf + 60c093f commit a079acc

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

doc/tutorials/introduction/cross_referencing/tutorial_cross_referencing.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ Open your Doxyfile using your favorite text editor and search for the key
3939
`TAGFILES`. Change it as follows:
4040

4141
@code
42-
TAGFILES = ./docs/doxygen-tags/opencv.tag=http://docs.opencv.org/3.4.16
42+
TAGFILES = ./docs/doxygen-tags/opencv.tag=http://docs.opencv.org/3.4.17
4343
@endcode
4444

4545
If you had other definitions already, you can append the line using a `\`:
4646

4747
@code
4848
TAGFILES = ./docs/doxygen-tags/libstdc++.tag=https://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen \
49-
./docs/doxygen-tags/opencv.tag=http://docs.opencv.org/3.4.16
49+
./docs/doxygen-tags/opencv.tag=http://docs.opencv.org/3.4.17
5050
@endcode
5151

5252
Doxygen can now use the information from the tag file to link to the OpenCV

modules/core/include/opencv2/core/version.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
#define CV_VERSION_MAJOR 3
99
#define CV_VERSION_MINOR 4
10-
#define CV_VERSION_REVISION 16
11-
#define CV_VERSION_STATUS "-dev"
10+
#define CV_VERSION_REVISION 17
11+
#define CV_VERSION_STATUS "-pre"
1212

1313
#define CVAUX_STR_EXP(__A) #__A
1414
#define CVAUX_STR(__A) CVAUX_STR_EXP(__A)

modules/dnn/include/opencv2/dnn/dnn.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
#include "opencv2/core/async.hpp"
4848

4949
#if !defined CV_DOXYGEN && !defined CV_STATIC_ANALYSIS && !defined CV_DNN_DONT_ADD_EXPERIMENTAL_NS
50-
#define CV__DNN_EXPERIMENTAL_NS_BEGIN namespace experimental_dnn_34_v23 {
50+
#define CV__DNN_EXPERIMENTAL_NS_BEGIN namespace experimental_dnn_34_v24 {
5151
#define CV__DNN_EXPERIMENTAL_NS_END }
52-
namespace cv { namespace dnn { namespace experimental_dnn_34_v23 { } using namespace experimental_dnn_34_v23; }}
52+
namespace cv { namespace dnn { namespace experimental_dnn_34_v24 { } using namespace experimental_dnn_34_v24; }}
5353
#else
5454
#define CV__DNN_EXPERIMENTAL_NS_BEGIN
5555
#define CV__DNN_EXPERIMENTAL_NS_END

modules/python/package/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def main():
99
os.chdir(SCRIPT_DIR)
1010

1111
package_name = 'opencv'
12-
package_version = os.environ.get('OPENCV_VERSION', '3.4.16') # TODO
12+
package_version = os.environ.get('OPENCV_VERSION', '3.4.17') # TODO
1313

1414
long_description = 'Open Source Computer Vision Library Python bindings' # TODO
1515

platforms/android/build_sdk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def build_engine(self, abi, engdest):
269269
# Add extra data
270270
apkxmldest = check_dir(os.path.join(apkdest, "res", "xml"), create=True)
271271
apklibdest = check_dir(os.path.join(apkdest, "libs", abi.name), create=True)
272-
for ver, d in self.extra_packs + [("3.4.16", os.path.join(self.libdest, "lib"))]:
272+
for ver, d in self.extra_packs + [("3.4.17", os.path.join(self.libdest, "lib"))]:
273273
r = ET.Element("library", attrib={"version": ver})
274274
log.info("Adding libraries from %s", d)
275275

platforms/android/service/readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ manually using adb tool:
1212

1313
adb install <path-to-OpenCV-sdk>/apk/OpenCV_<version>_Manager_<app_version>_<platform>.apk
1414

15-
Example: OpenCV_3.4.16-dev_Manager_3.49_armeabi-v7a.apk
15+
Example: OpenCV_3.4.17-dev_Manager_3.49_armeabi-v7a.apk
1616

1717
Use the list of platforms below to determine proper OpenCV Manager package for your device:
1818

platforms/maven/opencv-it/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.opencv</groupId>
66
<artifactId>opencv-parent</artifactId>
7-
<version>3.4.16</version>
7+
<version>3.4.17</version>
88
</parent>
99
<groupId>org.opencv</groupId>
1010
<artifactId>opencv-it</artifactId>

platforms/maven/opencv/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.opencv</groupId>
66
<artifactId>opencv-parent</artifactId>
7-
<version>3.4.16</version>
7+
<version>3.4.17</version>
88
</parent>
99
<groupId>org.opencv</groupId>
1010
<artifactId>opencv</artifactId>

platforms/maven/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.opencv</groupId>
55
<artifactId>opencv-parent</artifactId>
6-
<version>3.4.16</version>
6+
<version>3.4.17</version>
77
<packaging>pom</packaging>
88
<name>OpenCV Parent POM</name>
99
<licenses>

0 commit comments

Comments
 (0)