Skip to content

Commit eef59e6

Browse files
author
jayeshmepani
committed
fix: allow .so files in gitignore and bump version to 1.0.4
1 parent 8eb5c6e commit eef59e6

6 files changed

Lines changed: 7 additions & 5 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ venv.bak/
4848
# Project specific ignores
4949
# Allow prebuilt binaries in the libs folder
5050
!postalkit/libs/
51+
!postalkit/libs/**/*.so
52+
5153

5254

5355
# Build artifacts

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.3";
4+
$postalkitVersion = "v1.0.4";
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.3"
8+
POSTALKIT_VERSION = "v1.0.4"
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.3"
8+
__version__ = "1.0.4"

postalkit/data/manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from ..exceptions import DependencyMissingError
77
from .checksum import verify_checksum
88

9-
POSTALKIT_VERSION = "v1.0.3"
9+
POSTALKIT_VERSION = "v1.0.4"
1010
BINARIES_BASE_URL = os.environ.get("POSTALKIT_BINARIES_URL", f"https://github.com/jayeshmepani/libpostal-ffi-python/releases/download/{POSTALKIT_VERSION}")
1111
MODEL_DATA_URL = os.environ.get("POSTALKIT_MODEL_URL", "https://s3.amazonaws.com/libpostal/data/libpostal_data.tar.gz")
1212

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.3"
7+
version = "1.0.4"
88
description = "Zero-setup, one-command install Python package for libpostal"
99
readme = "README.md"
1010
requires-python = ">=3.8"

0 commit comments

Comments
 (0)