Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cff-version: 1.2.0
title: "SIPNET: Simple Photosynthesis and Evapotranspiration Model"
version: 2.1.0
version: 2.2.0
abstract: >
SIPNET (Simple Photosynthesis and Evapotranspiration Model) is a process-based
ecosystem model designed to simulate carbon and water fluxes and (optionally) agricultural management
Expand Down Expand Up @@ -56,7 +56,7 @@ keywords:
preferred-citation:
type: software
title: "SIPNET: Simple Photosynthesis and Evapotranspiration Model"
version: 2.1.0
version: 2.2.0
url: https://github.com/PecanProject/sipnet
authors:
- family-names: Michael
Expand Down
20 changes: 19 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@ sections to include in release notes:

### Added

### Fixed

### Changed

### Removed

### Git SHA

## **SIPNET 2.2.0 - "Carbon and Nitrogen in Sync"**
Comment thread
dlebauer marked this conversation as resolved.

### Added

- `sipnet-view` tool for visualizing SIPNET output files (#317)
- `leafon` and `leafoff` events for tracking phenological transitions (#326)
- `leafon` limited by available carbon and nitrogen; N storage pool; N resorption on `leafoff` (#337)
Expand All @@ -34,10 +46,14 @@ sections to include in release notes:
- New `--debug-log` CLI option to enable debug logging (#352)
- Ability to create derived columns in `sipnet-view` (#355)
- New `sipnet-debug-view` tool for visualizing SIPNET debug output files (#359)
- Plant mortality check with event output on occurrence (#359)
- Plant mortality check with transfer of remaining carbon and nitrogen to litter and soil pools and a `plantdeath` record in `events.out` (#359).
Comment thread
Copilot marked this conversation as resolved.
Outdated

### Fixed

- Corrected plant carbon accounting so the accounting-only carbon delta is not treated as nitrogen-bearing woody biomass (#359).
- Corrected nitrogen resorption and storage accounting during senescence and negative growth, including the ordering of storage use, fixation, and uptake (#359).
- Corrected the nitrogen mass-balance sign convention (#359).

### Changed

- Renamed the CLI option `--file-name` to `--file-prefix` for clarity while keeping `--file-name` as a backward-compatible alias (#320)
Expand All @@ -50,6 +66,8 @@ sections to include in release notes:

### Git SHA

70762ca

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how do we make sure that this is up to date when we tag the release?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't usually see SHAs listed in changelogs at all (certainly I see them in, say, release announcement emails, but those are a different beast that lives outside the repo). What's the intended use case here that a tag doesn't handle?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also the entries for releases 2.1.0 and 2.0.0 below still list the SHA as "[TBD]", which seems to me like an indication we don't really need it


## **SIPNET 2.1.0 - "Nitrogen Cycle, Methane, and Restart"**

### Added
Expand Down
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = SIPNET
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 2.1.0
PROJECT_NUMBER = 2.2.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion src/sipnet/version.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef SIPNET_VERSION_H
#define SIPNET_VERSION_H

#define NUMERIC_VERSION "2.1.0"
#define NUMERIC_VERSION "2.2.0"

// To enable, compile with `-DGIT_HASH="<your revision here>"`
#ifdef GIT_HASH
Expand Down
Loading