Skip to content

Commit

Permalink
Merge pull request #36 from knewkarma-io/dev
Browse files Browse the repository at this point in the history
Applying fix for kraw.Connection in KRAW 0.2.4
  • Loading branch information
rly0nheart authored Oct 19, 2024
2 parents 7bdbd86 + 372b58a commit 5ab5eae
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "knewkarma"
version = "7.0.12"
version = "7.0.13"
description = "A Reddit data analysis toolkit"
authors = ["Richard Mwewa <[email protected]>", "Knew Karma IO <[email protected]>"]
readme = "README.md"
Expand All @@ -24,7 +24,7 @@ repository = "https://github.com/knewkarma-io/knewkarma"

[tool.poetry.dependencies]
python = "^3.10"
kraw = "^0.2.2"
kraw = "^0.2.4"
matplotlib = { version = "^3.9.2", optional = true }
pandas = "^2.1.4"
rich-click = "^1.8.3"
Expand Down
2 changes: 1 addition & 1 deletion src/knewkarma/meta/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class Version:
major: tuple[int, str] = 7, "MAJOR"
minor: tuple[int, str] = 0, "MINOR"
patch: tuple[int, str] = 12, "PATCH"
patch: tuple[int, str] = 13, "PATCH"
full_version: str = f"{major[0]}.{minor[0]}.{patch[0]}"
release: str = f"{major[0]}.{minor[0]}"

0 comments on commit 5ab5eae

Please sign in to comment.