Skip to content

Commit d153de9

Browse files
committed
Prepare release of version 0.4
1 parent cb167e0 commit d153de9

4 files changed

Lines changed: 14 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
99
## [Unreleased]
1010

1111

12+
## [0.4] – 2018-02-21
13+
14+
1215
### Added
1316

1417
- Archive category entries for a specific object with `CMDBCategory::clear()`
@@ -72,6 +75,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7275
Initial release
7376

7477

75-
[Unreleased]: https://github.com/bheisig/i-doit-api-client-php/compare/0.3...HEAD
78+
[Unreleased]: https://github.com/bheisig/i-doit-api-client-php/compare/0.4...HEAD
79+
[0.4]: https://github.com/bheisig/i-doit-api-client-php/compare/0.3...0.4
7680
[0.3]: https://github.com/bheisig/i-doit-api-client-php/compare/0.2...0.3
7781
[0.2]: https://github.com/bheisig/i-doit-api-client-php/compare/0.1...0.2

Contribute.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ We like you to read and follow our [code of conduct](CODE_OF_CONDUCT.md) before
1212

1313
The best and (probably) easiest way is to use the API client library for your own projects. It would be very nice to share your thoughts with us. We love to hear from you.
1414

15-
If you have questions how to use it properly read the [documentation](Readme.md) carefully.
15+
If you have questions how to use it properly read the [documentation](README.md) carefully.
1616

1717

1818
## Report bugs
@@ -71,6 +71,9 @@ Unit tests are located under `tests/`. Just call `make phpunit` to execute all o
7171

7272
* Bump version in `composer.json`
7373
* Update `README.md` and `CHANGELOG.md`
74+
* Commit changes
75+
76+
`git commit CHANGELOG.md composer.json README.md -m "Prepare release of version <VERSION>"`
7477
* Create a tag with
7578

7679
`git tag -s -m "Release version <VERSION>" <VERSION>`

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,21 +51,21 @@ Meet these simple requirements before using the client:
5151
It is recommended to install this client via [Composer](https://getcomposer.org/). Change to your project's root directory and fetch the latest stable version:
5252

5353
~~~ {.bash}
54-
composer require "bheisig/idoitapi=>=0.3"
54+
composer require "bheisig/idoitapi=>=0.4"
5555
~~~
5656

5757
For a system-wide installation add `global` as an option:
5858

5959
~~~ {.bash}
60-
composer global require "bheisig/idoitapi=>=0.3"
60+
composer global require "bheisig/idoitapi=>=0.4"
6161
~~~
6262

6363
As an alternative add a new dependency on `bheisig/idoitapi` to your project's `composer.json` file. Here is a minimal example to install the current development branch locally:
6464

6565
~~~ {.json}
6666
{
6767
"require": {
68-
"bheisig/idoitapi": ">=0.3"
68+
"bheisig/idoitapi": ">=0.4"
6969
}
7070
}
7171
~~~
@@ -76,7 +76,7 @@ After that you need to call composer to install the API client library (under `v
7676
composer install
7777
~~~
7878

79-
This installs version `0.3` or higher if available. Instead of sticking to a specific/minimum version you may switch to the current development branch by using `@DEV`:
79+
This installs version `0.4` or higher if available. Instead of sticking to a specific/minimum version you may switch to the current development branch by using `@DEV`:
8080

8181
~~~ {.bash}
8282
composer require "bheisig/idoitapi=@DEV"

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bheisig/idoitapi",
3-
"version": "0.3",
3+
"version": "0.4",
44
"description": "Easy-to-use, but feature-rich client library for i-doit's JSON-RPC API",
55
"type": "library",
66
"keywords": ["i-doit", "cmdb", "it documentation", "api", "json-rpc"],

0 commit comments

Comments
 (0)