Skip to content

Commit a74d78f

Browse files
author
jayeshmepani
committed
chore: bump version to 1.0.6 and restrict support to python 3.10-3.14
1 parent 9ea5104 commit a74d78f

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

build/fetch-prebuilt.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env php
22
<?php
33

4-
$postalkitVersion = "v1.0.5";
4+
$postalkitVersion = "v1.0.6";
55
$repoUrl = "https://github.com/jayeshmepani/libpostal-ffi-python/releases/download/{$postalkitVersion}";
66

77
$targets = [

build/fetch-prebuilt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import sys
66
from pathlib import Path
77

8-
POSTALKIT_VERSION = "v1.0.5"
8+
POSTALKIT_VERSION = "v1.0.6"
99
REPO_URL = f"https://github.com/jayeshmepani/libpostal-ffi-python/releases/download/{POSTALKIT_VERSION}"
1010

1111
TARGETS = {

postalkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
from .core.ffi import *
77

8-
__version__ = "1.0.5"
8+
__version__ = "1.0.6"

postalkit/data/manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from ..runtime.platform import get_library_name, get_platform_identifier
88
from .checksum import verify_checksum
99

10-
POSTALKIT_VERSION = "v1.0.5"
10+
POSTALKIT_VERSION = "v1.0.6"
1111
BINARIES_BASE_URL = os.environ.get(
1212
"POSTALKIT_BINARIES_URL",
1313
f"https://github.com/jayeshmepani/libpostal-ffi-python/releases/download/{POSTALKIT_VERSION}",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "postalkit"
7-
version = "1.0.5"
7+
version = "1.0.6"
88
description = "Complete 100% 1:1 Python FFI Wrapper for the libpostal C Library - Direct C function calls with zero abstraction for maximum address parsing precision"
99
readme = "README.md"
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)