Skip to content

Commit

Permalink
Merge branch 'hotfix/v0.13.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
Damian Romero committed Nov 12, 2020
2 parents a79c3aa + d3d9687 commit 185d90d
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 10 deletions.
19 changes: 11 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ You can confirm installation via `conda list`
(figshare_patrons) $ conda list requiam
```

You should see that the version is `0.13.4`.
You should see that the version is `0.13.5`.

### Configuration Settings

Expand All @@ -122,7 +122,7 @@ execute the following command:
```
(figshare_patrons) $ export password="insert_password"
(figshare_patrons) $ export persist_path="/path/to/persistent/storage"
(figshare_patrons) $ python scripts/script_run --config config/figshare.ini \
(figshare_patrons) $ ./scripts/script_run --config config/figshare.ini \
--persistent_path $persist_path \
--ldap_password $password --grouper_password $password
```
Expand All @@ -131,7 +131,7 @@ Test command-line flags (`test` and `test_reverse`) are available to test EDS
query and Grouper synchronization (with the `sync` flag) by executing the following :

```
(figshare_patrons) $ python scripts/script_run --test \
(figshare_patrons) $ ./scripts/script_run --test \
--config config/figshare.ini --persistent_path $persist_path \
--ldap_password $password --grouper_password $password --sync
```
Expand All @@ -145,7 +145,7 @@ Without the `sync` flag, the above command line will perform a
To undo this change, use the `test_reverse` flag:

```
(figshare_patrons) $ python scripts/script_run --test_reverse \
(figshare_patrons) $ ./scripts/script_run --test_reverse \
--config config/figshare.ini --persistent_path $persist_path \
--ldap_password $password --grouper_password $password --sync
```
Expand All @@ -156,7 +156,7 @@ To execute the script and update Grouper and EDS, include the `portal`, `quota`,
and `sync` command-line flags:

```
(figshare_patrons) $ python scripts/script_run --config config/figshare.ini \
(figshare_patrons) $ ./scripts/script_run --config config/figshare.ini \
--persistent_path $persist_path \
--ldap_password $password --grouper_password $password \
--quota --portal --sync
Expand Down Expand Up @@ -199,7 +199,7 @@ To this end, the `user_update` script should be used. It has several features:
Execution can be done as follows:

```
(figshare_patrons) $ python scripts/user_update --config config/figshare.ini \
(figshare_patrons) $ ./scripts/user_update --config config/figshare.ini \
--persistent_path $persist_path \
--ldap_password $password --grouper_password $password \
--quota 123456 --portal testportal --netid <username> --sync
Expand Down Expand Up @@ -255,7 +255,7 @@ GrouperSuperAdmins and GrouperAdmins. If a group already exists, it will
skip to the privilege assignments. To execute the script:

```
(figshare_patrons) $ python scripts/add_grouper_groups --config config/figshare.ini \
(figshare_patrons) $ ./scripts/add_grouper_groups --config config/figshare.ini \
--persistent_path $persist_path --grouper_password $password \
--main_themes --sub_portals --quota --add
```
Expand All @@ -276,7 +276,8 @@ We use [SemVer](http://semver.org/) for versioning. For the versions available,
A list of released features and their issue number(s).
List is sorted from moderate to minor revisions for reach release.

v0.13.0 - v0.13.4:
v0.13.0 - v0.13.5:
* Make scripts executable #82
* Enhancements to `script_run` script:
- Option to run with subset of org codes or portal names #65
- Option to switch between production and testing Grouper stems for #68
Expand Down Expand Up @@ -348,6 +349,8 @@ v0.1.0:

* Chun Ly, Ph.D. ([@astrochun](http://www.github.com/astrochun)) - [University of Arizona Libraries](https://github.com/ualibraries), [Office of Digital Innovation and Stewardship](https://github.com/UAL-ODIS)

* Damian Romero ([@damian-romero](https://www.github.com/damian-romero)) - [University of Arizona Libraries](https://github.com/ualibraries), [Office of Digital Innovation and Stewardship](https://github.com/UAL-ODIS)

See also the list of
[contributors](https://github.com/ualibraries/ReQUIAM/contributors) who participated in this project.

Expand Down
2 changes: 1 addition & 1 deletion requiam/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.13.4"
__version__ = "0.13.5"


class TimerClass(object):
Expand Down
Empty file modified scripts/add_grouper_groups
100644 → 100755
Empty file.
2 changes: 2 additions & 0 deletions scripts/get_org_code_numbers
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/user/bin/env python

from os import path
from os import mkdir

Expand Down
Empty file modified scripts/script_run
100644 → 100755
Empty file.
Empty file modified scripts/user_update
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='requiam',
version='v0.13.4',
version='v0.13.5',
packages=find_packages('requiam'),
url='https://github.com/ualibraries/ReQUIAM',
license='MIT License',
Expand Down

0 comments on commit 185d90d

Please sign in to comment.