summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Lee <changjin9792@gmail.com>2023-03-28 20:54:11 +0800
committerJason Lee <changjin9792@gmail.com>2023-03-28 20:54:11 +0800
commitca68f5eff93735659080ce3e4dd8c549a47dd2ab (patch)
tree94eaedc6db41c207aa011fbf85f2fce69a4c18ee
parent753a2a145e8b3f3fc33368859b29c7bd496b9495 (diff)
readmev0.1.12
-rw-r--r--README.md2
-rw-r--r--dist/girok-0.1.10.tar.gzbin3317613 -> 0 bytes
-rw-r--r--dist/girok-0.1.11-py3-none-any.whlbin3324372 -> 0 bytes
-rw-r--r--dist/girok-0.1.11.tar.gzbin3317613 -> 0 bytes
-rw-r--r--dist/girok-0.1.12-py3-none-any.whl (renamed from dist/girok-0.1.10-py3-none-any.whl)bin3324374 -> 3324374 bytes
-rw-r--r--dist/girok-0.1.12.tar.gzbin0 -> 3317632 bytes
-rw-r--r--girok/__init__.py2
-rw-r--r--girok/commands/category.py2
-rw-r--r--girok/config.json2
-rw-r--r--pyproject.toml2
10 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index fd54bc6..d936d3a 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ Girok works fluently with `MacOS` and `Linux` users. It also works with `Windows
p.s) Since I launched the project a couple days ago, you might feel a little bit of lag for `showtask` operation, especially when you have many data. I'm working on optimizing the speed to enhance your experience!
-# 🤖 Version `0.1.11` is released now!
+# 🤖 Version `0.1.12` is released now!
To see the current version, enter `girok --version`.
diff --git a/dist/girok-0.1.10.tar.gz b/dist/girok-0.1.10.tar.gz
deleted file mode 100644
index e57203c..0000000
--- a/dist/girok-0.1.10.tar.gz
+++ /dev/null
Binary files differ
diff --git a/dist/girok-0.1.11-py3-none-any.whl b/dist/girok-0.1.11-py3-none-any.whl
deleted file mode 100644
index 06a3924..0000000
--- a/dist/girok-0.1.11-py3-none-any.whl
+++ /dev/null
Binary files differ
diff --git a/dist/girok-0.1.11.tar.gz b/dist/girok-0.1.11.tar.gz
deleted file mode 100644
index 1b31911..0000000
--- a/dist/girok-0.1.11.tar.gz
+++ /dev/null
Binary files differ
diff --git a/dist/girok-0.1.10-py3-none-any.whl b/dist/girok-0.1.12-py3-none-any.whl
index 84d5efb..2d91d2c 100644
--- a/dist/girok-0.1.10-py3-none-any.whl
+++ b/dist/girok-0.1.12-py3-none-any.whl
Binary files differ
diff --git a/dist/girok-0.1.12.tar.gz b/dist/girok-0.1.12.tar.gz
new file mode 100644
index 0000000..59e1c40
--- /dev/null
+++ b/dist/girok-0.1.12.tar.gz
Binary files differ
diff --git a/girok/__init__.py b/girok/__init__.py
index bf42823..d271f75 100644
--- a/girok/__init__.py
+++ b/girok/__init__.py
@@ -1 +1 @@
-__version__ = "0.1.11" \ No newline at end of file
+__version__ = "0.1.12" \ No newline at end of file
diff --git a/girok/commands/category.py b/girok/commands/category.py
index 2cf6faf..1285898 100644
--- a/girok/commands/category.py
+++ b/girok/commands/category.py
@@ -51,7 +51,7 @@ def add_category(
):
resp = category_api.add_category(cat, color)
if resp.status_code == 201:
- display_utils.center_print("Task added successfully!", type="success")
+ display_utils.center_print("Category added successfully!", type="success")
cats_dict = category_api.get_categories()
display_utils.display_categories(cats_dict, highlight_cat=cat)
elif resp.status_code == 400:
diff --git a/girok/config.json b/girok/config.json
index 1280e88..e457824 100644
--- a/girok/config.json
+++ b/girok/config.json
@@ -1,5 +1,5 @@
{
"app_name": "girok",
"base_url": "http://girok-server-balancer-1565927748.ap-northeast-1.elb.amazonaws.com",
- "version": "0.1.11"
+ "version": "0.1.12"
}
diff --git a/pyproject.toml b/pyproject.toml
index 327cab2..10bf2b7 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "girok"
-version = "0.1.11"
+version = "0.1.12"
description = "Email verification feature"
authors = ["Jason Lee <changjin9792@gmail.com>"]
readme = "README.md"