Skip to content

Commit

Permalink
Merge pull request #187 from ucfopen/develop
Browse files Browse the repository at this point in the history
Release v0.10.0
  • Loading branch information
Thetwam authored Jun 1, 2018
2 parents ba4b3ca + 4a80f47 commit fccee0b
Show file tree
Hide file tree
Showing 70 changed files with 4,932 additions and 179 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
*.pyc
*~
.coverage
.DS_Store
/*.egg-info
/.coverage
/.project
/.pyproject
/_build/
Expand Down
6 changes: 6 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,20 @@ Patches and Suggestions
- David Warden [@dfwarden](https://github.com/dfwarden)
- Devin Singh [@devints47](https://github.com/devints47)
- Elise Heron [@thedarkestknight](https://github.com/thedarkestknight)
- Elli Howard [@qwertynerd97](https://github.com/qwertynerd97)
- Henry Acevedo [@Colombiangmr](https://github.com/Colombiangmr)
- Ian Turgeon [@iturgeon](https://github.com/iturgeon)
- [@jackrsteiner](https://github.com/jackrsteiner)
- Jonathan Guilbe [@JonGuilbe](https://github.com/JonGuilbe)
- John Raible [@rebelaide](https://github.com/rebelaide)
- Mark Lalor [@MarkLalor](https://github.com/MarkLalor)
- Nathan Dabu [@nathaned](https://github.com/nathaned)
- Philip Carter [@phillyc](https://github.com/phillyc)
- Ralph Baird [@rmanbaird](https://github.com/rmanbaird)
- Sigurður Baldursson [@sigurdurb](https://github.com/sigurdurb)
- Spencer Rogers [@spencer1248](https://github.com/spencer1248)
- Stephen Woosley [@stephenwoosley](https://github.com/stephenwoosley)
- [@Tobiaqs](https://github.com/Tobiaqs)
- Tuan Pham [@tuanvpham](https://github.com/tuanvpham)
- William Funk [@WilliamRADFunk](https://github.com/WilliamRADFunk)
- William Wesley Monroe [@purpleHey](https://github.com/purpleHey)
27 changes: 26 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Change Log

## [0.10.0] - 2018-06-01

### New Endpoint Coverage

- Content Migrations (Thanks, [@qwertynerd97](https://github.com/qwertynerd97))
- Copy a File (Thanks, [@qwertynerd97](https://github.com/qwertynerd97))
- Course Quiz Extensions
- List Announcements (Thanks, [@rmanbaird](https://github.com/rmanbaird))
- Grade/Comment on Multiple Submissions (Thanks, [@rmanbaird](https://github.com/rmanbaird))
- Quiz Extensions

### General

- Lots of docstring fixes. (Thanks, [@rmanbaird](https://github.com/rmanbaird))

### Deprecation Warnings

- All methods starting with `list_` have been deprecated. Each has been replaced with a corresponding method starting with `list_`. For example, `Course.list_groups()` is now `Course.get_groups()`. The `list_` methods will be removed in a future release. (Thanks [@qwertynerd97](https://github.com/qwertynerd97) for doing the bulk of the grunt work.)
- `Course.update_tab()` is now deprecated. Use `Tab.update()` instead.

### Bugfixes

- Fixed a bug where taking a slice of a `PaginatedList` where the `start` was larger than the list caused an infinite loop.
- Fixed a typo that prevented `Assignment.submit()` from working properly. (Thanks, [@Tobiaqs](https://github.com/Tobiaqs))

## [0.9.0] - 2018-03-01

### New Endpoint Coverage
Expand All @@ -11,7 +36,7 @@
- Added example usage for several common endpoints to our documentation.
- Updated `PaginatedList` to allow specification of the root element to build the list from when given an atypical JSON response (see [#146](https://github.com/ucfopen/canvasapi/issues/146)). (thanks [@dfwarden](https://github.com/dfwarden))
- Improved keyword argument support for `course.get_section()` (thanks [@andrew-gardener](https://github.com/andrew-gardener))
- When uploading a file to a submission with `Submission.upload_comment`, it will automatically attached to a new comment.
- When uploading a file to a submission with `Submission.upload_comment()`, it will automatically attached to a new comment.

### Deprecation Warnings

Expand Down
2 changes: 1 addition & 1 deletion canvasapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

__all__ = ["Canvas"]

__version__ = '0.9.0'
__version__ = '0.10.0'
Loading

0 comments on commit fccee0b

Please sign in to comment.