From 9120532fff117c5c54e9e514593756c1ae11e8c9 Mon Sep 17 00:00:00 2001 From: Bevan Hunt Date: Thu, 8 Apr 2021 16:54:14 -0700 Subject: [PATCH] update readme --- CHANGELOG.md | 5 +++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 8 ++++---- 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b380c45..be829ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [12.0.2] - 2021-04-08 + +### Updated +- Updated README + ## [12.0.1] - 2021-04-08 ### Updated diff --git a/Cargo.lock b/Cargo.lock index c00e2d4..4a1b0d5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -480,7 +480,7 @@ dependencies = [ [[package]] name = "broker" -version = "12.0.1" +version = "12.0.2" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 7d0bb90..cd83b48 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "broker" -version = "12.0.1" +version = "12.0.2" authors = ["Bevan Hunt "] edition = "2018" license = "MIT" diff --git a/README.md b/README.md index 54adfbb..edb1cb8 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ POST /create_user } ``` - `admin_token` is required and can be set in the command args - it is for not allowing everyone to add a user - the default is `letmein` -- `email` and `data` is an optional field +- `email`, `scopes`, and `data` are optional fields will return `200` or `500` or `400` @@ -207,7 +207,7 @@ will return: `200` or `500` or `400` or `401` } ] ``` -- note: `email` and `data` can be `null` +- note: `email`, `scopes`, and `data` can be `null` #### Optional - get user @@ -240,7 +240,7 @@ will return: `200` or `500` or `400` or `401` } } ``` -- note: `email` and `data` can be `null` +- note: `email`, `scopes`, and `data` can be `null` #### Optional - update user @@ -262,7 +262,7 @@ POST /update_user } } ``` -- note: `tenant_name`, `password`, `email`, `data` are optional fields +- note: `tenant_name`, `password`, `email`, `scopes`, `data` are optional fields will return: `200` or `500` or `400` or `401`