Bumped version

This commit is contained in:
Apfel 2019-03-14 03:01:27 +01:00
parent e578d6e4d2
commit 62ab30fbe3
2 changed files with 7 additions and 1 deletions

View File

@ -7,6 +7,12 @@ This is the SOAP Server Software. The other repository only has the communicatio
# Changelog # Changelog
Versions on this software are based on goals. (e.g 0.2 works towards SQL support. 0.3 works towards NUS support, etc.) 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.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 ### 0.2.5
*This version of WiiSOAP Server was brought to you by Apfel. Thank you for your contribution.* *This version of WiiSOAP Server was brought to you by Apfel. Thank you for your contribution.*
- Fixed lint errors. - Fixed lint errors.

View File

@ -47,7 +47,7 @@ func checkError(err error) {
func main() { func main() {
// Initial Start. // 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. // Check the Config.
configfile, err := os.Open("./config.xml") configfile, err := os.Open("./config.xml")