Bump version to 0.4.0

This commit is contained in:
2020-09-18 11:38:29 -05:00
parent 99675d0f1f
commit 3a966bbcb8
4 changed files with 13 additions and 14 deletions

View File

@@ -1,3 +1,7 @@
# Version 0.4.0 (Sep 18, 2020)
- Generate simplified solution reports (CSV)
# Version 0.3.3 (Aug 13, 2020) # Version 0.3.3 (Aug 13, 2020)
- Add option to write solution to JSON file in RELOG.solve - Add option to write solution to JSON file in RELOG.solve

View File

@@ -1,11 +1,6 @@
JULIA := julia --color=yes --project=@. JULIA := julia --color=yes --project=@.
SRC_FILES := $(wildcard src/*.jl test/*.jl) SRC_FILES := $(wildcard src/*.jl test/*.jl)
VERSION := 0.4
VERSION_MAJOR := 0
VERSION_MINOR := 3
VERSION_PATCH := 0
VERSION_SHORT := $(VERSION_MAJOR).$(VERSION_MINOR)
all: docs test all: docs test
@@ -20,7 +15,7 @@ clean:
rm -rf build/* rm -rf build/*
docs: docs:
mkdocs build -d ../docs/$(VERSION_SHORT)/ mkdocs build -d ../docs/$(VERSION)/
test: build/test.log test: build/test.log

View File

@@ -1,7 +1,7 @@
name = "RELOG" name = "RELOG"
uuid = "a2afcdf7-cf04-4913-85f9-c0d81ddf2008" uuid = "a2afcdf7-cf04-4913-85f9-c0d81ddf2008"
authors = ["Alinson S Xavier <axavier@anl.gov>"] authors = ["Alinson S Xavier <axavier@anl.gov>"]
version = "0.3.2" version = "0.4.0"
[deps] [deps]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"

View File

@@ -3,14 +3,14 @@ RELOG: Reverse Logistics Optimization
**RELOG** is a supply chain optimization package focusing on reverse logistics and reverse manufacturing. For example, the package can be used to determine where to build recycling plants, what sizes should they have and which customers should be served by which plants. The package supports customized reverse logistics pipelines, with multiple types of plants, multiple types of product and multiple time periods. **RELOG** is a supply chain optimization package focusing on reverse logistics and reverse manufacturing. For example, the package can be used to determine where to build recycling plants, what sizes should they have and which customers should be served by which plants. The package supports customized reverse logistics pipelines, with multiple types of plants, multiple types of product and multiple time periods.
<img src="https://anl-ceeesa.github.io/RELOG/0.3/images/ex_transportation.png" width="1000px"/> <img src="https://anl-ceeesa.github.io/RELOG/0.4/images/ex_transportation.png" width="1000px"/>
### Documentation ### Documentation
* [Usage](https://anl-ceeesa.github.io/RELOG/0.3/usage) * [Usage](https://anl-ceeesa.github.io/RELOG/0.4/usage)
* [Input and Output Data Formats](https://anl-ceeesa.github.io/RELOG/0.3/format) * [Input and Output Data Formats](https://anl-ceeesa.github.io/RELOG/0.4/format)
* [Simplified Solution Reports](https://anl-ceeesa.github.io/RELOG/0.3/reports.md) * [Simplified Solution Reports](https://anl-ceeesa.github.io/RELOG/0.4/reports.md)
* [Optimization Model](https://anl-ceeesa.github.io/RELOG/0.3/model) * [Optimization Model](https://anl-ceeesa.github.io/RELOG/0.4/model)
### Authors ### Authors
@@ -44,4 +44,4 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSE
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. POSSIBILITY OF SUCH DAMAGE.
``` ```