Compare commits

..

5 Commits

Author SHA1 Message Date
Vikash Kothary
5beabf9764 docs: Update the command to create a new user in the README 2022-07-02 15:00:09 +01:00
Vikash Kothary
bab67692d4 docs: Add known issues section in README 2022-07-02 14:47:34 +01:00
Vikash Kothary
de65ce59b1 chore: Use Makefile version in release script 2022-07-02 14:42:14 +01:00
Vikash Kothary
05244175f5 Merge branch 'main' into develop 2022-07-02 14:41:45 +01:00
Vikash Kothary
3be70a1c92 bump: version from 2.3.0 to 2.4.0 2022-07-02 14:40:12 +01:00
5 changed files with 11 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env make #!/usr/bin/env make
ANKISYNCD_NAME ?= Anki Sync Server ANKISYNCD_NAME ?= Anki Sync Server
ANKISYNCD_VERSION ?= v2.3.0 ANKISYNCD_VERSION ?= v2.4.0
ANKISYNCD_DESCRIPTION ?= Self-hosted Anki Sync Server. ANKISYNCD_DESCRIPTION ?= Self-hosted Anki Sync Server.
ENV ?= local ENV ?= local

View File

@@ -37,6 +37,12 @@ It supports Python 3 and Anki 2.1.
- [Support for other database backends](#support-for-other-database-backends) - [Support for other database backends](#support-for-other-database-backends)
</details> </details>
Known Issues
------------
TODO
Installing Installing
---------- ----------
@@ -50,7 +56,7 @@ Installing
3. Create user: 3. Create user:
$ ./ankisyncctl.py adduser <username> $ python -m ankisyncd_cli adduser <username>
4. Setup a proxy to trans-write the requests (Optional) . 4. Setup a proxy to trans-write the requests (Optional) .
Ankisyncd currently support the header "Transfer-Encoding: chunked" used by Anki. Ankisyncd currently support the header "Transfer-Encoding: chunked" used by Anki.

View File

@@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "anki-sync-server" name = "anki-sync-server"
version = "2.3.0" version = "2.4.0"
description = "Self-hosted Anki Sync Server." description = "Self-hosted Anki Sync Server."
authors = ["Vikash Kothary <kothary.vikash@gmail.com>"] authors = ["Vikash Kothary <kothary.vikash@gmail.com>"]
packages = [ packages = [

View File

@@ -15,7 +15,7 @@ if [[ "${GIT_BRANCH}" != "main" ]]; then
fi fi
## TODO: get package version from pyproject.toml ## TODO: get package version from pyproject.toml
CURRENT_VERSION=v2.3.0 CURRENT_VERSION=${ANKISYNCD_VERSION}
## Create GitHub Release ## Create GitHub Release
git tag -a ${CURRENT_VERSION} -m "v${CURRENT_VERSION}" git tag -a ${CURRENT_VERSION} -m "v${CURRENT_VERSION}"

View File

@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
# TODO: Generate from or parse values from pyproject.toml. # TODO: Generate from or parse values from pyproject.toml.
setup( setup(
name="anki-sync-server", name="anki-sync-server",
version="2.3.0", version="2.4.0",
description="Self-hosted Anki Sync Server.", description="Self-hosted Anki Sync Server.",
author="Anki Community", author="Anki Community",
author_email="kothary.vikash+ankicommunity@gmail.com", author_email="kothary.vikash+ankicommunity@gmail.com",