Skip to content

0.10.0 - 2018-06-01

Choose a tag to compare

@Thetwam Thetwam released this 01 Jun 21:43
· 810 commits to develop since this release
v0.10.0
fccee0b

New Endpoint Coverage

General

Deprecation Warnings

  • All methods starting with list_ have been deprecated. Each has been replaced with a corresponding method starting with get_. For example, Course.list_groups() is now Course.get_groups(). The list_ methods will be removed in a future release. (Thanks @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)