Skip to content

Commit

Permalink
release candidate 0.4.0 (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhuppmann committed Jan 14, 2020
1 parent 6c445b1 commit c14cc91
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Next Release
# Release v0.4.0

## Highlights

- New feature: downscale regional timeseries data to subregions using a proxy variable
- Improved features to support aggregation by sectors and regions: support weighted-average, min/max, etc.
(including a reworked tutorial)
- Streamlined I/O: include `meta` table when reading from/writing to xlsx files
- Standardized logger behaviour

## API changes

Expand Down
4 changes: 2 additions & 2 deletions pyam/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1263,7 +1263,7 @@ def to_excel(self, excel_writer, sheet_name='data', iamc_index=False,

def export_metadata(self, excel_writer, sheet_name='meta'):
"""Deprecated, see :method:`export_meta()`"""
# TODO: deprecate in next release
# TODO: deprecate in next release (>=0.5.0)
deprecation_warning('Use `export_meta() instead`!')
self.export_meta(excel_writer, sheet_name='meta')

Expand All @@ -1286,7 +1286,7 @@ def export_meta(self, excel_writer, sheet_name='meta'):

def load_metadata(self, path, *args, **kwargs):
"""Deprecated, see :method:`load_meta()`"""
# TODO: deprecate in next release
# TODO: deprecate in next release (>=0.5.0)
deprecation_warning('Use `load_meta() instead`!')
self.load_meta(path, *args, **kwargs)

Expand Down

0 comments on commit c14cc91

Please sign in to comment.