From 28225cdcfcac1b5f27ca33e9a66e35e3945a6439 Mon Sep 17 00:00:00 2001 From: "joel@joellee.org" Date: Sun, 5 Feb 2023 21:38:23 +0800 Subject: [PATCH 1/2] feat: add new release, drop support for 3.7 --- .github/workflows/ci-python.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-python.yml b/.github/workflows/ci-python.yml index b6a776d..2f86aae 100644 --- a/.github/workflows/ci-python.yml +++ b/.github/workflows/ci-python.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9, '3.10'] + python-version: [3.8, 3.9, '3.10', '3.11'] steps: - name: Checkout uses: actions/checkout@v2 diff --git a/pyproject.toml b/pyproject.toml index ea094f4..9182910 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,11 @@ [tool.poetry] name = "realtime" -version = "0.0.5" +version = "0.0.6" description = "" authors = ["Joel"] [tool.poetry.dependencies] -python = "^3.7" +python = "^3.8" websockets = "^10.3" python-dateutil = "^2.8.1" typing-extensions = "^4.2.0" From 0e8699a7bb12c583a7802dd39a863e75ee324714 Mon Sep 17 00:00:00 2001 From: "joel@joellee.org" Date: Sun, 5 Feb 2023 21:41:06 +0800 Subject: [PATCH 2/2] fix: update version --- pyproject.toml | 2 +- realtime/__init__.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9182910..5d7171a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "realtime" -version = "0.0.6" +version = "1.0.0" description = "" authors = ["Joel"] diff --git a/realtime/__init__.py b/realtime/__init__.py index e26adbd..d8febfb 100644 --- a/realtime/__init__.py +++ b/realtime/__init__.py @@ -1,4 +1,5 @@ -__version__ = "0.0.5" + +__version__ = "1.0.0" from realtime.channel import CallbackListener, Channel from realtime.connection import Socket