Skip to content

Commit

Permalink
Bump up 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tomyeh committed Feb 3, 2024
1 parent 65c4e51 commit a31660f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/oid.dart
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ bool isValidOid(String value, {bool ignoreLength = false})
/// Regular expression pattern for matching single OID character.
const oidCharPattern = r'[-0-9a-zA-Z._~]';
/// Regular expression pattern for matching OID.
const oidPattern = '$oidCharPatter+';
const oidPattern = '$oidCharPattern+';
final _reOid = RegExp('^$oidPattern\$');

/** The function used to generate a list of random integers to construct OID.
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: entity
version: 3.0.1+1
version: 3.0.2
description: A simple ORM for Relational and NoSQL database, such as Couchbase and PostgreSQL.
homepage: https://github.com/rikulo/entity
documentation: https://github.com/rikulo/entity
environment:
sdk: ">=3.0.0 <4.0.0"
sdk: ">=3.1.0 <4.0.0"

dependencies:
postgresql2: '>=1.0.0'
Expand Down

0 comments on commit a31660f

Please sign in to comment.