Skip to content

Commit

Permalink
Fix GE iban regex
Browse files Browse the repository at this point in the history
  • Loading branch information
ElGigi committed Dec 19, 2022
1 parent ac885f1 commit 3bc9b32
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. This projec
to [Semantic Versioning] (http://semver.org/). For change log format,
use [Keep a Changelog] (http://keepachangelog.com/).

## [1.0.1] - 2022-12-19

### Fixed

- GE iban regex

## [1.0.0] - 2022-12-19

No change since the last release
Expand Down
2 changes: 1 addition & 1 deletion src/Country.php
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ public function getIbanRegex(): string
self::FO => "[0-9]{14}", // Faroe Islands
self::FR => "[0-9]{10}[0-9A-Z]{11}[0-9]{2}", // France
self::GB => "[A-Z]{4}[0-9]{14}", // United Kingdom
self::GE => "[0-9A-Z]{18}", // Georgia
self::GE => "[0-9A-Z]{2}[0-9]{16}", // Georgia
self::GI => "[A-Z]{4}[0-9A-Z]{15}", // Gibraltar
self::GL => "[0-9]{14}", // Greenland
self::GR => "[0-9]{7}[0-9A-Z]{16}", // Greece
Expand Down

0 comments on commit 3bc9b32

Please sign in to comment.