Skip to content

Commit 5199850

Browse files
committed
Version update to 4.8.1.
1 parent 4ddd118 commit 5199850

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

doc/tutorials/introduction/cross_referencing/tutorial_cross_referencing.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ Open your Doxyfile using your favorite text editor and search for the key
4646
`TAGFILES`. Change it as follows:
4747

4848
@code
49-
TAGFILES = ./docs/doxygen-tags/opencv.tag=http://docs.opencv.org/4.8.0
49+
TAGFILES = ./docs/doxygen-tags/opencv.tag=http://docs.opencv.org/4.8.1
5050
@endcode
5151

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

5454
@code
5555
TAGFILES = ./docs/doxygen-tags/libstdc++.tag=https://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen \
56-
./docs/doxygen-tags/opencv.tag=http://docs.opencv.org/4.8.0
56+
./docs/doxygen-tags/opencv.tag=http://docs.opencv.org/4.8.1
5757
@endcode
5858

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#define CV_VERSION_MAJOR 4
99
#define CV_VERSION_MINOR 8
10-
#define CV_VERSION_REVISION 0
10+
#define CV_VERSION_REVISION 1
1111
#define CV_VERSION_STATUS ""
1212

1313
#define CVAUX_STR_EXP(__A) #__A

modules/python/package/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def main():
1919
os.chdir(SCRIPT_DIR)
2020

2121
package_name = 'opencv'
22-
package_version = os.environ.get('OPENCV_VERSION', '4.8.0') # TODO
22+
package_version = os.environ.get('OPENCV_VERSION', '4.8.1') # TODO
2323

2424
long_description = 'Open Source Computer Vision Library Python bindings' # TODO
2525

platforms/maven/opencv-it/pom.xml

Lines changed: 1 addition & 1 deletion
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>4.8.0</version>
7+
<version>4.8.1</version>
88
</parent>
99
<groupId>org.opencv</groupId>
1010
<artifactId>opencv-it</artifactId>

platforms/maven/opencv/pom.xml

Lines changed: 1 addition & 1 deletion
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>4.8.0</version>
7+
<version>4.8.1</version>
88
</parent>
99
<groupId>org.opencv</groupId>
1010
<artifactId>opencv</artifactId>

platforms/maven/pom.xml

Lines changed: 1 addition & 1 deletion
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>4.8.0</version>
6+
<version>4.8.1</version>
77
<packaging>pom</packaging>
88
<name>OpenCV Parent POM</name>
99
<licenses>

0 commit comments

Comments
 (0)