diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 8eab46df1..24c5bd60a 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,6 @@ # Release Notes for User Sync Tool Version 2.0 -These notes apply to 2.0rc2 of 2017-04-07. +These notes apply to v2.0 of 2017-04-10. ## New Arguments & Configuration Syntax @@ -48,7 +48,9 @@ some had applied only to Federated ID and some to Enterprise ID. All existing configuration files, user input files, and command-line scripts will need to be revamped to be compatible with the new formats. Here is a quick -cheat sheet of what needs to be done: +cheat sheet of what needs to be done. + +### Configuration Files * replace `dashboard:` with `adobe_users:` * replace `directory:` with `directory_users:` @@ -79,7 +81,20 @@ a new file, call it `extension.yaml` the `directory_users` section, and put the relative path to the new `extension.yaml` file as its value. -If you have a file that lists users for input (--users file f) or removal, the column named `user` should be renamed to `username`. +### User Input Files + +If you have a file that lists users for input (`--users file` _f_), +the column head `user` should be changed to `username`. + +### Removed User Input Files +The format for files containing users to be removed/deleted has +changed, and you will need to regenerate these files rather than +using any existing ones. +### Command Line Scripts +* All of the options related to Adobe user removal have been +changed to use the new ``--adobe-only-user-action` argument. +* The `--source-filter` argument has been removed. Use the +configuration setting `all_users_filter` instead. diff --git a/docs/User Sync Guide.pdf b/docs/User Sync Guide.pdf index 47720d0df..6069ae8e5 100644 Binary files a/docs/User Sync Guide.pdf and b/docs/User Sync Guide.pdf differ diff --git a/docs/art/User Sync Guide.md b/docs/art/User Sync Guide.md new file mode 100644 index 000000000..6638288af --- /dev/null +++ b/docs/art/User Sync Guide.md @@ -0,0 +1,9 @@ +# User Sync from Adobe # + +The documentation for User Sync from Adobe can be found online: + +[https://adobe-apiplatform.github.io/user-sync.py/](https://adobe-apiplatform.github.io/user-sync.py/) + +The latest release can always be found at: + +[https://github.com/adobe-apiplatform/user-sync.py/releases/latest](https://github.com/adobe-apiplatform/user-sync.py/releases/latest) diff --git a/docs/user-manual/index.md b/docs/user-manual/index.md index 6515490b2..ad4d1f341 100644 --- a/docs/user-manual/index.md +++ b/docs/user-manual/index.md @@ -51,7 +51,7 @@ options. The tool assumes that your enterprise has purchased Adobe product licenses. You must use the -[Adobe Admin Console](https://www.adobe.io/console/) to define +[Adobe Admin Console](https://adminconsole.adobe.com/enterprise/) to define user groups and product configurations. Membership in these groups controls which users in your organization can access which products. diff --git a/user_sync/version.py b/user_sync/version.py index a6bf7be98..eac579800 100644 --- a/user_sync/version.py +++ b/user_sync/version.py @@ -18,4 +18,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -__version__ = '2.0rc2' +__version__ = '2.0'