From 24b3d80fcff560cbcc56411623e5f80a469069e8 Mon Sep 17 00:00:00 2001 From: Angela Zhao Date: Thu, 1 May 2025 14:10:27 -0400 Subject: [PATCH 1/3] add imports to readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 10ab78f..f8fb8c4 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,7 @@ Users of PyGridSim have the option between creating a fully customized circuit a ## Customized Circuit Creation ```python +from pygridsim import PyGridSim circuit = PyGridSim() # Add Custom Source and Load @@ -99,6 +100,7 @@ Note that the losses here are expressed in Watts, and the Voltages in Volts. The ## Defaults-Based Circuit Creation ```python +from pygridsim import PyGridSim circuit = PyGridSim() # Add Custom Source and Load From 2c8c71a30f0b305e6d070e9908cae3a6f05d3e49 Mon Sep 17 00:00:00 2001 From: Angela Zhao Date: Thu, 1 May 2025 14:20:39 -0400 Subject: [PATCH 2/3] add history md --- HISTORY.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index e061a53..116f14c 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1 +1,13 @@ -# History +History +======= +## 0.1.0 - 2025-05-01 + +First PyGridSim release to PyPI: https://pypi.org/project/pygridsim/ + +* Add Proper Packaging - [PR #1](https://github.com/DAI-Lab/PyGridSim/pull/1) by @sarahmish +* Add Type Checking, Exports, Enum Config File, Generators/PV - [PR #3](https://github.com/DAI-Lab/PyGridSim/pull/1) by @amzhao16 +* Pass Github Actions - [PR #5](https://github.com/DAI-Lab/PyGridSim/pull/5) by @amzhao16 +* Add Naming Consistency, Customization Tests - [PR #6](https://github.com/DAI-Lab/PyGridSim/pull/6) by @amzhao16 +* Support User Query Functions - [PR #7](https://github.com/DAI-Lab/PyGridSim/pull/7) by @amzhao16 +* Enhance Results.py - [PR #8](https://github.com/DAI-Lab/PyGridSim/pull/8) by @amzhao16 +* Update README - [PR #11](https://github.com/DAI-Lab/PyGridSim/pull/11) by @amzhao16 \ No newline at end of file From 7fbda14c92392da7c0827962f06acb079c51779b Mon Sep 17 00:00:00 2001 From: Angela Zhao Date: Fri, 2 May 2025 12:09:11 -0400 Subject: [PATCH 3/3] link fix --- HISTORY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index 116f14c..ee07a1f 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -5,7 +5,7 @@ History First PyGridSim release to PyPI: https://pypi.org/project/pygridsim/ * Add Proper Packaging - [PR #1](https://github.com/DAI-Lab/PyGridSim/pull/1) by @sarahmish -* Add Type Checking, Exports, Enum Config File, Generators/PV - [PR #3](https://github.com/DAI-Lab/PyGridSim/pull/1) by @amzhao16 +* Add Type Checking, Exports, Enum Config File, Generators/PV - [PR #3](https://github.com/DAI-Lab/PyGridSim/pull/3) by @amzhao16 * Pass Github Actions - [PR #5](https://github.com/DAI-Lab/PyGridSim/pull/5) by @amzhao16 * Add Naming Consistency, Customization Tests - [PR #6](https://github.com/DAI-Lab/PyGridSim/pull/6) by @amzhao16 * Support User Query Functions - [PR #7](https://github.com/DAI-Lab/PyGridSim/pull/7) by @amzhao16