Skip to content

Commit

Permalink
update version tags to 1.4.1 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
nkiraly committed Sep 15, 2015
1 parent 930363c commit 86d1b3c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .config.properties
@@ -1,4 +1,4 @@
## DBSteward PEAR package meta data
package.name = dbsteward
package.version = 1.4.0
package.version = 1.4.1
package.api_version = 1.4
4 changes: 2 additions & 2 deletions doc/INSTALLING.md
Expand Up @@ -9,7 +9,7 @@ composer global require nkiraly/dbsteward:dev-master

Or, install a particular version:
```bash
composer global require nkiraly/dbsteward:1.4.0
composer global require nkiraly/dbsteward:1.4.1
```

You may need to add the composer bin path to your PATH environment variable to streamline dbsteward usage:
Expand All @@ -23,7 +23,7 @@ https://github.com/nkiraly/DBSteward/blob/master/doc/USING.md) for examples.
## Updating via Composer
Updating your composer global package is as easy as re-requiring the global nkiraly/dbsteward package and specifying the version you want to switch to using:
```bash
composer global require nkiraly/dbsteward:1.4.0
composer global require nkiraly/dbsteward:1.4.1
```

Or, if you have several global composer dependencies, do a global update:
Expand Down
2 changes: 1 addition & 1 deletion lib/DBSteward/dbsteward.php
Expand Up @@ -35,7 +35,7 @@

class dbsteward {

const VERSION = '1.4.0';
const VERSION = '1.4.1';
const API_VERSION = '1.4';

const PATTERN_KNOWN_TYPES = "/^bigint.*|^bigserial|^bool.*|^bytea.*|^char.*|^date|^double precision|^inet$|^interval|^int.*|^oid|^smallint|^serial|^string|^text|^time$|^time with.*|^timestamp.*|^varchar.*|^uuid$/i";
Expand Down

0 comments on commit 86d1b3c

Please sign in to comment.