Skip to content

Commit

Permalink
Fixing documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
cdgriffith committed Dec 24, 2019
1 parent ec09916 commit 607517b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ Version 2.1.0
Version 2.0.0
-------------

* Adding `BoxList` to allow for `Box`es to be recursively added to lists as well
* Adding `BoxList` to allow for any `Box` to be recursively added to lists as well
* Adding `to_json` and `to_yaml` functions
* Changing `Box` original functionality to `LightBox`, `Box` now searches lists
* Changing `Box` callable to return keys, not values, and they are sorted
Expand Down
2 changes: 2 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@


with open("index.rst", "a") as index, open(changes_file) as changes, open(changes_4_file) as change_4:
index.write('\n')
index.write(changes.read())
index.write('\n')
index.write(change_4.read())

with open(os.path.join(project_root, "box", "__init__.py"), "r") as init_file:
Expand Down

0 comments on commit 607517b

Please sign in to comment.