diff --git a/CHANGELOG.md b/CHANGELOG.md
index a6ecd8b0..3048c7ec 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,14 @@
+#### [v2.5.0](https://github.com/Phara0h/travelling/compare/v2.4.2...v2.5.0)
+
+- Update Travelling.postman_collection.json [`40e95d2`](https://github.com/Phara0h/travelling/commit/40e95d244ccaa3f66ce57aa0179f750833ea27b6)
+- Started work on add traces throughout code [`dfe93dd`](https://github.com/Phara0h/travelling/commit/dfe93dd291233aa72989998d1053f05a03949295)
+
#### [v2.4.2](https://github.com/Phara0h/travelling/compare/v2.4.1...v2.4.2)
+> 13 April 2021
+
- Added fix for when there is no default group it defaults to anonymous [`bd1abda`](https://github.com/Phara0h/travelling/commit/bd1abdae0763bef0a7d9b5d7e9c872498ef6ae27)
#### [v2.4.1](https://github.com/Phara0h/travelling/compare/v2.4.0...v2.4.1)
diff --git a/README.md b/README.md
index 0e7a0565..9b2ac80c 100644
--- a/README.md
+++ b/README.md
@@ -2326,7 +2326,7 @@ Path: api/v1/users
**Kind**: global class
-### UsersDomain.get(authorization_bearer)
+### UsersDomain.get(domain, sort, limit, filter, authorization_bearer)
get - Gets all the users
##### Optional Query Params
@@ -2348,12 +2348,16 @@ get - Gets all the users
| created_on | *optional* (example: 1568419646794) |
| last_login | *optional* (example: null) |
-Path: api/v1/users
+Path: api/v1/users/domain/:domain
**Kind**: static method of [UsersDomain
](#UsersDomain)
| Param | Type | Description |
| --- | --- | --- |
+| domain | any
| (example: test) |
+| sort | any
| (example: created_on) |
+| limit | any
| (example: 2) |
+| filter | any
| (example: locked=false) |
| authorization_bearer | string
| The client_credentials generated OAUth2 access token. |
@@ -3029,8 +3033,15 @@ const { Travelling } = require('./sdk.js')('http://127.0.0.1');
+#### [v2.5.0](https://github.com/Phara0h/travelling/compare/v2.4.2...v2.5.0)
+
+- Update Travelling.postman_collection.json [`40e95d2`](https://github.com/Phara0h/travelling/commit/40e95d244ccaa3f66ce57aa0179f750833ea27b6)
+- Started work on add traces throughout code [`dfe93dd`](https://github.com/Phara0h/travelling/commit/dfe93dd291233aa72989998d1053f05a03949295)
+
#### [v2.4.2](https://github.com/Phara0h/travelling/compare/v2.4.1...v2.4.2)
+> 13 April 2021
+
- Added fix for when there is no default group it defaults to anonymous [`bd1abda`](https://github.com/Phara0h/travelling/commit/bd1abdae0763bef0a7d9b5d7e9c872498ef6ae27)
#### [v2.4.1](https://github.com/Phara0h/travelling/compare/v2.4.0...v2.4.1)
diff --git a/package.json b/package.json
index 899e4dbf..23954ee3 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "travelling",
- "version": "2.4.2",
+ "version": "2.5.0",
"description": "A dynamic route level groups permissions middleman service",
"main": "index.js",
"scripts": {