Browse Source

Version bump

master
Trevor Irons 4 years ago
parent
commit
13adc38967
3 changed files with 11 additions and 5 deletions
  1. 1
    1
      CMakeLists.txt
  2. 9
    3
      python/publish.sh
  3. 1
    1
      python/setup.py

+ 1
- 1
CMakeLists.txt View File

@@ -14,7 +14,7 @@ SET_PROPERTY(GLOBAL PROPERTY TARGET_SUPPORTS_SHARED_LIBS TRUE)
14 14
 # Lemma versioning, set Major, minor, and patch here                                               #
15 15
 set(LEMMA_VERSION_MAJOR "0")                                                                       #
16 16
 set(LEMMA_VERSION_MINOR "3")                                                                       #
17
-set(LEMMA_VERSION_PATCH "1")                                                                       #
17
+set(LEMMA_VERSION_PATCH "2")                                                                       #
18 18
 set(LEMMA_VERSION "\"${LEMMA_VERSION_MAJOR}.${LEMMA_VERSION_MINOR}.${LEMMA_VERSION_PATCH}\"")      #
19 19
 set(LEMMA_VERSION_NOQUOTES "${LEMMA_VERSION_MAJOR}.${LEMMA_VERSION_MINOR}.${LEMMA_VERSION_PATCH}") #
20 20
 ####################################################################################################

+ 9
- 3
python/publish.sh View File

@@ -1,5 +1,11 @@
1
-rm -rf dist
1
+rm -rf build dist clean pyLemma.egg.info
2 2
 python setup.py build
3 3
 python setup.py bdist_wheel
4
-auditwheel repair --plat manylinux2010_x86_64  pyLemma-0.0.2-cp37-cp37m-linux_x86_64.whl
5
-twine upload dist/*
4
+auditwheel repair ./dist/pyLemma*.whl -w ./clean
5
+twine upload clean/*
6
+
7
+#rm -rf dist
8
+#python setup.py build
9
+#python setup.py bdist_wheel
10
+#auditwheel repair --plat manylinux2010_x86_64  pyLemma-0.0.2-cp37-cp37m-linux_x86_64.whl
11
+#twine upload dist/*

+ 1
- 1
python/setup.py View File

@@ -21,7 +21,7 @@ class InstallPlatlib(install):
21 21
 
22 22
 setup(
23 23
   name             = 'pyLemma',
24
-  version          = '0.0.7', 
24
+  version          = '0.0.8', 
25 25
   author           = 'Trevor Irons and others',
26 26
   author_email     = 'Trevor.Irons@lemmasoftware.org',
27 27
   description      = 'A short description of the app/lib',

Loading…
Cancel
Save