Skip to content

Commit

Permalink
Release 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tgerulaitis committed Sep 13, 2018
1 parent 4c9c7f9 commit 43ae7c5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,11 @@ You can build the magedbm2 phar archive with [Box](https://github.com/box-projec
To release a new version of magedbm2:

1. Build the phar archive
2. Upload `magedbm2.phar` and `magedbm2-<version>.phar` to the [magedbm2-releases](https://s3.eu-west-2.amazonaws.com/magedbm2-releases/) S3 bucket
3. Update the `manifest.json` file with the new version information and upload a copy of the file to the S3 bucket
2. Update the `manifest.json` file with the new version information

To calculate the sha1 checksum of the phar archive, run: `sha1sum -a 1 magedbm2.phar`
- Use `https://github.com/meanbee/magedbm2/releases/download/<version>/magedbm2.phar` as the URL

- To calculate the sha1 checksum of the phar archive, run: `sha1sum magedbm2.phar`

3. Update the Installation instructions above with the new version
4. Create a release on [Github](https://github.com/meanbee/magedbm2/releases)
8 changes: 7 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
[
{
"name": "magedbm2.phar",
"sha1": "112be2d7bc7e78cc001102656b5b8ac7e964e5f6",
"url": "https://github.com/meanbee/magedbm2/releases/download/2.0.1/magedbm2.phar",
"version": "2.0.1"
},
{
"name": "magedbm2.phar",
"sha1": "db70d3a07c3ef7794f909c1929ad6e10d9208382",
"url": "https://s3.eu-west-2.amazonaws.com/magedbm2-releases/magedbm2-1.0.0.phar",
"url": "https://github.com/meanbee/magedbm2/releases/download/1.0.0/magedbm2.phar",
"version": "1.0.0"
}
]
2 changes: 1 addition & 1 deletion src/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Application extends \Symfony\Component\Console\Application
{

const APP_NAME = "magedbm2";
const APP_VERSION = "2.0.1-alpha";
const APP_VERSION = "2.0.1";

/** @var ClassLoader $autoloader */
protected $autoloader;
Expand Down

0 comments on commit 43ae7c5

Please sign in to comment.