Skip to content

Commit 158f300

Browse files
authored
Update whatsnew (#91)
* updating whatsnew * updating version
1 parent a888c40 commit 158f300

File tree

3 files changed

+94
-1
lines changed

3 files changed

+94
-1
lines changed

docs/pages/releasenotes.rst

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ What's New
55

66
These are new features and improvements of note in each release.
77

8+
.. include:: releasenotes/0.3.0.rst
9+
810
.. include:: releasenotes/0.2.0.rst
911

1012
.. include:: releasenotes/0.1.9.rst

docs/pages/releasenotes/0.3.0.rst

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
0.3.0 (November 9 2023)
2+
-----------------------
3+
4+
This release incorporates new functions and addresses depreciated commands in some of the package dependencies.
5+
6+
Functionality
7+
~~~~~~~~~~~~~~
8+
9+
* Updated visualize_attribute_connectivity to use bipartite graph layout (updated function).
10+
11+
* IV related dependencies moved to an installation extra (install using `pip install pvops[iv]`).
12+
13+
* Removed deprecated normalization parameters in ML pipeline (bug fix).
14+
15+
* Updated code to fix deprecation/future warnings.
16+
17+
Testing
18+
~~~~~~~~~~~~~~
19+
20+
* Added Python 3.11 to the test environment.
21+
22+
Documentation
23+
~~~~~~~~~~~~~~
24+
25+
* Fix small typos in index.rst.
26+
27+
* Renamed references to examples as tutorials for consistency.
28+
29+
* Updated docs to refer to modules as modules, rather than packages.
30+
31+
* Updated RTD config to install doc requirements using the package installation extra
32+
33+
* Removed redundant boilerplate in development.rst
34+
35+
* Update tested versions in documentation
36+
37+
* Added links to tutorials where appropriate in the user guide.
38+
39+
* Added a simplified version of the module overview table from the JOSS manuscript to the homepage of the documentation.
40+
41+
* Added statement of need to homepage
42+
43+
* Fixed image embed in tutorial
44+
45+
* Added dates to what's new sections
46+
47+
* Expanded patch notes to include recent tags.
48+
49+
* Deleted WIP docs pages to remove "not included in any toctree" errors.
50+
51+
* Added nbsphinx gallery view to tutorials page.
52+
53+
* Added more content to abbreviations page.
54+
55+
Tutorials
56+
~~~~~~~~~~~~~~
57+
58+
* Rename pvOps examples to tutorials for consistency throughout repository.
59+
60+
* Linked to tutorials in README.
61+
62+
* Added a description of data in timeseries tutorial.
63+
64+
* Removed redundant plots in timeseries tutorial.
65+
66+
Other
67+
~~~~~~~~~~~~~~
68+
69+
* Added copyright and license attributes to pvops.
70+
71+
* Removed manifest.in (not needed).
72+
73+
* Removed docs/init.py (not a module).
74+
75+
* Chose more appropriate author/copyright in setup.py and conf.py.
76+
77+
* Added version to pvops (pvops.__version__ now exists).
78+
79+
* Removed external licenses (determined to be unnecessary by legal).
80+
81+
* Renamed citation file and updated version number.
82+
83+
* Added noxfile for dev task running.
84+
85+
* Removed unused docker files
86+
87+
* Add standard python files to gitignore
88+
89+
* Removed redundant requirements files
90+
91+
* Pinned documentation related requirements

pvops/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# warnings.warn("")
99
pass
1010

11-
__version__ = '0.2.0'
11+
__version__ = '0.3.0'
1212

1313
__copyright__ = """Copyright 2023 National Technology & Engineering
1414
Solutions of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525

0 commit comments

Comments
 (0)