Version bump

This commit is contained in:
Nemo 2023-07-02 14:50:25 +05:30
parent a5adba4a5c
commit 794f82a4e2
3 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "pincode-validator",
"version": "1.0.4",
"version": "2.0.0",
"description": "A simple regex based validator for PIN codes in India",
"main": "src/index.js",
"directories": {

View File

@ -1,13 +1,13 @@
[project]
name = "pincode"
version = "1.0.4"
version = "2.0.0"
description = "A simple offline pincode validator for India"
authors = [
{name = "Nemo", email = "python@captnemo.in"},
]
dependencies = ["requests"]
readme = "README.md"
requires-python = ">=3.7"
requires-python = ">=3.8"
license = {text = "MIT"}
keywords = ["pincode", "regex", "offline", "pin", "validator"]
classifiers = [
@ -24,6 +24,7 @@ Documentation = "https://github.com/captn3m0/india-pincode-regex/wiki"
[tool.pdm]
includes = ["CHANGELOG.md", "README.md", "regex.txt", "src/pincode"]
excludes = [
".github/",
"src/*.js",
"src/*.php",
"tests/*.php",

View File

@ -1,5 +1,5 @@
module PincodeValidator
VERSION = "1.0.4"
VERSION = "2.0.0"
FILENAME='regex.txt'
class Error < StandardError; end