From 62ab30fbe36ee44a1b518a76bb56f579270cbaa5 Mon Sep 17 00:00:00 2001 From: Apfel <32610623+Apfel@users.noreply.github.com> Date: Thu, 14 Mar 2019 03:01:27 +0100 Subject: [PATCH] Bumped version --- README.md | 6 ++++++ main.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8ca94e3..ace9c81 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,12 @@ This is the SOAP Server Software. The other repository only has the communicatio # Changelog Versions on this software are based on goals. (e.g 0.2 works towards SQL support. 0.3 works towards NUS support, etc.) ## 0.2.x Kawauso +### 0.2.6 +*This version of WiiSOAP Server was brought to you by Apfel. Thank you for your contribution.* +- Fixed error handling. +- Moved configuration example. +- Added `go.mod` for an easier installation. +- Changed `SQLPort` to `SQLAddress` in the `config.xml` file. ### 0.2.5 *This version of WiiSOAP Server was brought to you by Apfel. Thank you for your contribution.* - Fixed lint errors. diff --git a/main.go b/main.go index 1a43e59..1600d7b 100644 --- a/main.go +++ b/main.go @@ -47,7 +47,7 @@ func checkError(err error) { func main() { // Initial Start. - fmt.Println("WiiSOAP 0.2.5 Kawauso\nReading the Config...") + fmt.Println("WiiSOAP 0.2.6 Kawauso\nReading the Config...") // Check the Config. configfile, err := os.Open("./config.xml")