]> git.armaanb.net Git - lightcards.git/commitdiff
Push version to 0.1.0
authorArmaan Bhojwani <me@armaanb.net>
Sun, 31 Jan 2021 04:12:28 +0000 (23:12 -0500)
committerArmaan Bhojwani <me@armaanb.net>
Sun, 31 Jan 2021 04:12:28 +0000 (23:12 -0500)
lightcards/lightcards.py
man/lightcards.1
man/lightcards.1.md
setup.py

index 15f8d67a9370ee486e9db338293b47cad512b313..9affd447aa082476a0343d9afff7d34a6c4d7692 100755 (executable)
@@ -19,7 +19,7 @@ def parse_args():
                         nargs=1)
     parser.add_argument("-v", "--version",
                         action='version',
-                        version="lightcards 0.0.0")
+                        version="lightcards 0.1.0")
     parser.add_argument("-s", "--shuffle",
                         action='store_true',
                         help="shuffle cards before starting")
index 9b8586f70a9c39f4873d42efb9b6b0973e484e21..3d3cc5fd2e5d63d7c92bf6fd5f9b9219d85f2816 100644 (file)
@@ -1,6 +1,6 @@
 .\" Automatically generated by Pandoc 2.11.3
 .\"
-.TH "lightcards" "1" "January 2021" "0.0.0" ""
+.TH "lightcards" "1" "January 2021" "0.1.0" ""
 .hy
 .SH NAME
 .PP
@@ -22,8 +22,11 @@ Relative or absolute path to the input Markdown or HTML file
 \f[B]-h\f[R], \f[B]\[en]help\f[R]
 Show a help message and exit
 .TP
+\f[B]-s\f[R], \f[B]\[en]shuffle\f[R]
+Shuffle cards before starting
+.TP
 \f[B]-v\f[R], \f[B]\[en]version\f[R]
-Print version
+Print version and exit
 .SH EXIT VALUES
 .TP
 \f[B]0\f[R]
index 96e8cccdc1aeecf1c06d03e8ff33e3549c566abb..90ba1d480c99cc9896967bb88b6dbb5a2b2c9769 100644 (file)
@@ -1,4 +1,4 @@
-% lightcards(1) 0.0.0
+% lightcards(1) 0.1.0
 % Armaan Bhojwani
 % January 2021
 
@@ -19,8 +19,11 @@ lightcards [[options]] [input file]
 **-h**, **--help**
 : Show a help message and exit
 
+**-s**, **--shuffle**
+: Shuffle cards before starting
+
 **-v**, **--version**
-: Print version
+: Print version and exit
 
 # EXIT VALUES
 **0**
index 6b7eb999437f164bcfcc7c11d4093218ceda29a9..1925b4836d0ccba75789db1d547fdd181d7052fe 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="lightcards",
-    version="0.0.0",
+    version="0.1.0",
     description="Markdown flashcards",
     url="https://sr.ht/~armaan/lightcards",
     author="Armaan Bhojwani",
@@ -11,7 +11,7 @@ setup(
     packages=["lightcards"],
     install_requires=["beautifulsoup4", "markdown"],
     classifiers=[
-        "Development Status :: 2 - Pre-Alpha",
+        "Development Status :: 4 - Beta",
         "Intended Audience :: Other Audience",
         "Environment :: Console :: Curses",
         "License :: OSI Approved :: MIT License",