Skip to content

Commit

Permalink
Drop beta label
Browse files Browse the repository at this point in the history
  • Loading branch information
Dovyski committed Oct 8, 2018
1 parent b915479 commit 5457a83
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions cvui.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
A (very) simple UI lib built on top of OpenCV drawing primitives.
Version: 2.7.0-BETA
Version: 2.7.0
Usage:
Expand Down Expand Up @@ -1105,7 +1105,7 @@ void handleMouse(int theEvent, int theX, int theY, int theFlags, void* theData);
#endif

// Lib version
static const char *VERSION = "2.7.0-BETA";
static const char *VERSION = "2.7.0";

const int ROW = 0;
const int COLUMN = 1;
Expand Down
4 changes: 2 additions & 2 deletions cvui.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
A (very) simple UI lib built on top of OpenCV drawing primitives.
Version: 2.7b1
Version: 2.7
Use of cvui revolves around calling cvui.init() to initialize the lib,
rendering cvui components to a np.ndarray (that you handle yourself) and
Expand Down Expand Up @@ -48,7 +48,7 @@ def main():
main()

# Lib version
VERSION = '2.7b1'
VERSION = '2.7'

# Constants regarding component interactions
ROW = 0
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
url: https://dovyski.github.io/cvui
cvui_version: 2.7.0-BETA
cvui_version: 2.7.0
permalink: pretty
4 changes: 2 additions & 2 deletions python/package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="cvui",
version="2.7beta1",
version="2.7",
author="Fernando Bevilacqua",
author_email="[email protected]",
license="MIT",
Expand All @@ -15,7 +15,7 @@
url="https://github.com/dovyski/cvui",
packages=setuptools.find_packages(),
classifiers=(
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
Expand Down

0 comments on commit 5457a83

Please sign in to comment.