Skip to content

Commit 45477c7

Browse files
committed
add changelog
1 parent e1bbf76 commit 45477c7

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

Python/changes.rst

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
=========
2+
Changelog
3+
=========
4+
5+
This is a record of all past mygrad releases and what went into them,
6+
in reverse chronological order. All previous releases should still be available
7+
on pip.
8+
9+
10+
----------
11+
2019-12-14
12+
----------
13+
14+
We're finally keeping a formal changelog! This update includes our first discussion of features that were introduced in Python 3.8. Also includes various typo/grammar fixes.
15+
16+
~~~~~~~~~~~
17+
New Content
18+
~~~~~~~~~~~
19+
20+
- `Module 1 - Jupyter Notebooks: <https://www.pythonlikeyoumeanit.com/Module1_GettingStartedWithPython/Jupyter_Notebooks.html>`_ included a brief discussion of Jupyter lab
21+
22+
- `Module 1 - Setting Up a Development Environment: <https://www.pythonlikeyoumeanit.com/Module1_GettingStartedWithPython/Getting_Started_With_IDEs_and_Notebooks.html>`_ Updated IDE discussion to reflect recent improvements to VSCode for Python.
23+
24+
- `Module 5 - Writing Good Code: <https://www.pythonlikeyoumeanit.com/Module5_OddsAndEnds/Writing_Good_Code.html#Using-the-typing-Module>`_ Added ``typing.Literal``, which was introduced in Python 3.8, to the discussion of type-hints .
25+
26+
- `Module 5 - Writing Good Code: <https://www.pythonlikeyoumeanit.com/Module5_OddsAndEnds/Writing_Good_Code.html#Using-the-typing-Module>`_ ``pyright`` is now listed alongside ``mypy`` as a tool for doing static type analysis.
27+

Python/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ I started learning to use Python in graduate school for my physics research, and
6464
module_3_problems.rst
6565
module_4.rst
6666
module_5.rst
67+
changes.rst
6768

6869
Indices and tables
6970
==================

src/plymi/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"get_all_notebook_files",
2020
"convert_all_ipynb_to_markdown",
2121
"convert_all_markdown_to_ipynb",
22+
"convert_src_to_html",
2223
"build_to_doc",
2324
]
2425

0 commit comments

Comments
 (0)