-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #469 from oemof/release_0.2.1
Release 0.2.1
- Loading branch information
Showing
54 changed files
with
1,727 additions
and
256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Contributor Covenant Code of Conduct | ||
|
||
## Our Pledge | ||
|
||
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. | ||
|
||
## Our Standards | ||
|
||
Examples of behavior that contributes to creating a positive environment include: | ||
|
||
* Using welcoming and inclusive language | ||
* Being respectful of differing viewpoints and experiences | ||
* Gracefully accepting constructive criticism | ||
* Focusing on what is best for the community | ||
* Showing empathy towards other community members | ||
|
||
Examples of unacceptable behavior by participants include: | ||
|
||
* The use of sexualized language or imagery and unwelcome sexual attention or advances | ||
* Trolling, insulting/derogatory comments, and personal or political attacks | ||
* Public or private harassment | ||
* Publishing others' private information, such as a physical or electronic address, without explicit permission | ||
* Other conduct which could reasonably be considered inappropriate in a professional setting | ||
|
||
## Our Responsibilities | ||
|
||
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. | ||
|
||
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. | ||
|
||
## Scope | ||
|
||
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. | ||
|
||
## Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the [project team](https://oemof.org/contact/). The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. | ||
|
||
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. | ||
|
||
## Attribution | ||
|
||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] | ||
|
||
[homepage]: http://contributor-covenant.org | ||
[version]: http://contributor-covenant.org/version/1/4/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__version__ = "0.2.0" | ||
__version__ = "0.2.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
v0.2.1 (March 9, 2018) | ||
+++++++++ | ||
|
||
|
||
API changes | ||
########### | ||
|
||
* The function create_nx_graph only takes an energysystem as argument, | ||
not a solph model. As it is not a major release you can still pass | ||
a Model but you should adapt your application as soon as possible. | ||
(`Issue #439 <https://github.com/oemof/oemof/issues/439>`_) | ||
|
||
|
||
New features | ||
############ | ||
|
||
* It is now possible determine minimum up and downtimes for nonconvex flows. | ||
Check the `oemof_examples <https://github.com/oemof/oemof_examples>`_ | ||
repository for an exemplary usage. | ||
|
||
* Startup and shutdown costs can now be defined time-dependent. | ||
|
||
* The graph module has been revised. | ||
(`Issue #439 <https://github.com/oemof/oemof/issues/439>`_) | ||
|
||
* You can now store a graph to disc as `.graphml` file to open it in yEd | ||
with labels. | ||
* You can add weight to edges. | ||
* Labels are attached to the nodes. | ||
|
||
* Two functions `get_node_by_name` and `filter_nodes` have been added that | ||
allow to get specified nodes or nodes of one kind from the results | ||
dictionary. (`Issue #426 <https://github.com/oemof/oemof/issues/426>`_) | ||
|
||
* A new function `param_results()` collects all parameters of nodes and flows | ||
in a dictionary similar to the `results` dictionary. | ||
(`Issue #445 <https://github.com/oemof/oemof/issues/445>`_) | ||
|
||
* In `outputlib.views.node()`, an option for multiindex dataframe has been added. | ||
|
||
|
||
Documentation | ||
############# | ||
|
||
* Some small fixes and corrected typos. | ||
|
||
|
||
Known issues | ||
############ | ||
|
||
* It is not possible to model one time step with oemof.solph. You have to | ||
model at least two timesteps | ||
(`Issue #306 <https://github.com/oemof/oemof/issues/306>`_). Please leave a | ||
comment if this bug affects you. | ||
|
||
|
||
Bug fixes | ||
######### | ||
|
||
* Shutdown costs for nonconvex flows are now accounted within the objective | ||
which was not the case before due to a naming error. | ||
* Console script `oemof_test_installation` has been fixed. | ||
(`Issue #452 <https://github.com/oemof/oemof/issues/452>`_) | ||
* Adapt solph to API change in the Pyomo package. | ||
* Deserializing a :class:`Node <oemof.network.Node>` leads to an object which | ||
was no longer serializable. This is fixed now. :class:`Node | ||
<oemof.network.Node>` instances should be able to be dumped and restored an | ||
arbitraty amount of times. | ||
* Adding timesteps to index of constraint for component el-line | ||
fixes an issue with pyomo. | ||
|
||
|
||
Testing | ||
####### | ||
|
||
* New console script `test_oemof` has been added (experimental). | ||
(`Issue #453 <https://github.com/oemof/oemof/issues/453>`_) | ||
|
||
|
||
Other changes | ||
############# | ||
|
||
* Internal change: Unnecessary list extensions while creating a model are | ||
avoided, which leads to a decrease in runtime. | ||
(`Issue #438 <https://github.com/oemof/oemof/issues/438>`_) | ||
* The negative/positive gradient attributes are dictionaries. In the | ||
constructor they moved from sequences to a new `dictionaries` argument. | ||
(`Issue #437 <https://github.com/oemof/oemof/issues/437>`_) | ||
* License agreement was adapted according to the reuse project | ||
(`Issue #442 <https://github.com/oemof/oemof/issues/442>`_) | ||
* Code of conduct was added. | ||
(`Issue #440 <https://github.com/oemof/oemof/issues/440>`_) | ||
* Version of required packages is now limited to the most actual version | ||
(`Issue #464 <https://github.com/oemof/oemof/issues/464>`_) | ||
|
||
|
||
Contributors | ||
############ | ||
|
||
* Cord Kaldemeyer | ||
* Jann Launer | ||
* Simon Hilpert | ||
* Stephan Günther | ||
* Uwe Krien |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from pkgutil import extend_path | ||
__path__ = extend_path(__path__, __name__) | ||
|
||
__version__ = '0.2.0' | ||
__version__ = '0.2.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.