Skip to content

Commit

Permalink
Prepare to release v1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ctessum committed Aug 9, 2021
1 parent 0bd4444 commit 7309079
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 82 deletions.
75 changes: 0 additions & 75 deletions CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Code check](https://github.com/spatialmodel/inmap/actions/workflows/check.yml/badge.svg)](https://github.com/spatialmodel/inmap/actions/workflows/check.yml) [![Coverage Status](https://coveralls.io/repos/github/spatialmodel/inmap/badge.svg?branch=master)](https://coveralls.io/github/spatialmodel/inmap?branch=master) [![Go Reference](https://pkg.go.dev/badge/github.com/spatialmodel/inmap.svg)](https://pkg.go.dev/github.com/spatialmodel/inmap) [![Go Report Card](https://goreportcard.com/badge/github.com/spatialmodel/inmap)](https://goreportcard.com/report/github.com/spatialmodel/inmap)

_Note: This is the documentation for InMAP v1.8.0. Documentation for other versions is available [here](https://github.com/spatialmodel/inmap/releases)._
_Note: This is the documentation for InMAP v1.9.0. Documentation for other versions is available [here](https://github.com/spatialmodel/inmap/releases)._

## About InMAP

Expand Down
2 changes: 0 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ This file contains a checklist for steps to take to release a new version of InM

1. If the input data format has changed since the last release, change the `DataVersion` and/or `VarGridDataVersion` variables in `framework.go` and regenerate the input data with the new version number.

1. Set the release date in `CHANGELOG.md`.

1. Commit the results.

1. Run `cmd/inmap/build.sh` to create executables for different platforms.
Expand Down
2 changes: 1 addition & 1 deletion cmd/inmap/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# This script compiles InMAP for different systems.

version=1.8.0
version=1.9.0

env GOOS=linux GOARCH=amd64 go build -v
mv inmap inmap${version}linux-amd64
Expand Down
2 changes: 1 addition & 1 deletion framework.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (

const (
// Version gives the version number.
Version = "1.8.0"
Version = "1.9.0"

// VarGridDataVersion gives the version of the variable grid data reuquired by
// this version of the software.
Expand Down
4 changes: 2 additions & 2 deletions website/static/blog/2019-04-20-sr/sr_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def run_sr(emis, model, output_variables, emis_units="tons/year"):
emis_file = os.path.join(_tmpdir.name, "%s.shp"%(job_name))
emis.to_file(emis_file)

version = "1.8.0"
version = "1.9.0"

if _inmap_exe == None:
ost = platform.system()
Expand All @@ -93,7 +93,7 @@ def run_sr(emis, model, output_variables, emis_units="tons/year"):
"--cmds=srpredict",
"--version=v%s"%version,
"--job_name=%s"%job_name,
"--memory_gb=2",
"--memory_gb=3",
"--EmissionUnits=%s"%emis_units,
"--EmissionsShapefiles=%s"%emis_file,
"--OutputVariables=%s"%json.dumps(output_variables),
Expand Down

0 comments on commit 7309079

Please sign in to comment.