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", "name": "pincode-validator",
"version": "1.0.4", "version": "2.0.0",
"description": "A simple regex based validator for PIN codes in India", "description": "A simple regex based validator for PIN codes in India",
"main": "src/index.js", "main": "src/index.js",
"directories": { "directories": {

View File

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

View File

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