Skip to content

Commit

Permalink
Prepare to release v1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ctessum committed Apr 1, 2021
1 parent 560a82e commit 615288a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
vendor/*

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

[![Build Status](https://travis-ci.com/spatialmodel/inmap.svg?branch=master)](https://travis-ci.com/spatialmodel/inmap) [![Coverage Status](https://coveralls.io/repos/github/spatialmodel/inmap/badge.svg?branch=master)](https://coveralls.io/github/spatialmodel/inmap?branch=master) [![GoDoc](http://godoc.org/github.com/spatialmodel/inmap?status.svg)](http://godoc.org/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.7.2. Documentation for other versions is available [here](https://github.com/spatialmodel/inmap/releases)._
_Note: This is the documentation for InMAP v1.8.0. Documentation for other versions is available [here](https://github.com/spatialmodel/inmap/releases)._

## About InMAP

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

1. Update the version number in `framework.go` and in `cmd/inmap/build.sh`.

1. Change the version number in `website/static/2019-04-20-sr/sr_util.py`.

1. Update the version number in `README.md`. Make sure the README and other documentation is up to date.

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.
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.7.2
version=1.8.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.7.2"
Version = "1.8.0"

// VarGridDataVersion gives the version of the variable grid data reuquired by
// this version of the software.
Expand Down
2 changes: 1 addition & 1 deletion 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.7.2"
version = "1.8.0"

if _inmap_exe == None:
ost = platform.system()
Expand Down

0 comments on commit 615288a

Please sign in to comment.