Skip to content

Commit

Permalink
update changelog/doc
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed May 1, 2018
1 parent 857d7e7 commit fedfb2d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Eventum RPC Client Library

## [4.2.0] - 2018-05-01

- Move classes to `Eventum\RPC` namespace, deprecate root namespace [#4]
- Update xmlrpc methods doc, include `@method` annotation, [#4]

[4.2.0]: https://github.com/eventum/rpc/compare/v4.1.1...v4.2.0
[#4]: https://github.com/eventum/rpc/pull/4

## [4.1.1] - 2017-10-15

- add `addUserAgent` method for public access
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
eventum-rpc
===========
# Eventum RPC

Eventum RPC Client Library.

Expand Down Expand Up @@ -46,18 +45,18 @@ require __DIR__ . '/vendor/autoload.php';
require __DIR__ . '/vendor/autoload.php';

$rpc_url = "http://example.org/rpc/xmlrpc.php";
$client = new Eventum_RPC($rpc_url);
$client = new \Eventum\RPC\EventumXmlRpcClient($rpc_url);
$client->setCredentials("user@example.org", "password");

// add user@example.org as authorized replier in issue $issue_id belonging to project $project_id
$client->addAuthorizedReplier($issue_id, $project_id, "user@example.org");
```

The available XMLRPC Methods can be seen from [here](XMLRPC.md).
The available XMLRPC Methods can also be seen from [XMLRPC.md](XMLRPC.md).

## Copyright and License ##

This software is Copyright (c) 2008 - 2017 Eventum Team.
This software is Copyright (c) 2008 - 2018 Eventum Team.

This is free software, licensed under the GNU General Public License
version 2.

0 comments on commit fedfb2d

Please sign in to comment.