Kentaro Wada 3 سال پیش
والد
کامیت
615d9dfb50
3فایلهای تغییر یافته به همراه4 افزوده شده و 3 حذف شده
  1. 2 2
      docs/man/labelme.1
  2. 1 1
      labelme/__init__.py
  3. 1 0
      setup.py

+ 2 - 2
docs/man/labelme.1

@@ -1,7 +1,7 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.3.
-.TH LABELME "1" "June 2021" "labelme 4.5.8" "User Commands"
+.TH LABELME "1" "June 2021" "labelme 4.5.8.post0" "User Commands"
 .SH NAME
-labelme \- manual page for labelme 4.5.8
+labelme \- manual page for labelme 4.5.8.post0
 .SH DESCRIPTION
 usage: labelme [\-h] [\-\-version] [\-\-reset\-config]
 .IP

+ 1 - 1
labelme/__init__.py

@@ -12,7 +12,7 @@ __appname__ = "labelme"
 # 1. MAJOR version when you make incompatible API changes;
 # 2. MINOR version when you add functionality in a backwards-compatible manner;
 # 3. PATCH version when you make backwards-compatible bug fixes.
-__version__ = "4.5.8"
+__version__ = "4.5.8.post0"
 
 QT4 = QT_VERSION[0] == "4"
 QT5 = QT_VERSION[0] == "5"

+ 1 - 0
setup.py

@@ -115,6 +115,7 @@ def main():
             "twine upload dist/labelme-{:s}.tar.gz".format(version),
         ]
         for cmd in commands:
+            print("+ {:s}".format(cmd))
             subprocess.check_call(shlex.split(cmd))
         sys.exit(0)