Skip to content

Commit

Permalink
Merge pull request #687 from getsentry/prepare-1.11.x
Browse files Browse the repository at this point in the history
Prepare for 1.11.x
  • Loading branch information
Jean85 authored Nov 9, 2018
2 parents 77ef277 + 7c919a3 commit 7b7e88d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,28 +98,28 @@ Tagging a Release
2. Create a new branch for the minor version (if not present):

```
$ git checkout -b releases/1.10.x
$ git checkout -b releases/1.11.x
```

3. Update the hardcoded version tag in ``Client.php``:

```php
class Raven_Client
{
const VERSION = '1.10.0';
const VERSION = '1.11.0';
}
```

4. Commit the change:

```
$ git commit -a -m "1.10.0"
$ git commit -a -m "1.11.0"
```

5. Tag the branch:

```
git tag 1.10.0
git tag 1.11.0
```

6. Push the tag:
Expand All @@ -137,15 +137,15 @@ git checkout master
8. Add the next minor release to the ``CHANGES`` file:

```
## 1.11.0 (unreleased)
## 1.12.0 (unreleased)
```

9. Update the version in ``Client.php``:

```php
class Raven_Client
{
const VERSION = '1.11.x-dev';
const VERSION = '1.12.x-dev';
}
```

Expand All @@ -154,7 +154,7 @@ class Raven_Client
```json
"extra": {
"branch-alias": {
"dev-master": "1.11.x-dev"
"dev-master": "1.12.x-dev"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.10.x-dev"
"dev-master": "1.11.x-dev"
}
}
}
2 changes: 1 addition & 1 deletion lib/Raven/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

class Raven_Client
{
const VERSION = '1.10.x-dev';
const VERSION = '1.11.x-dev';

const PROTOCOL = '6';

Expand Down

0 comments on commit 7b7e88d

Please # to comment.