diff --git a/Changelog.md b/Changelog.md index dda283d..09ab276 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,7 +4,8 @@ This document attempts to describe the history of changes to Seekia. Small and insignificant changes may not be included in this log. -## Unversioned Changes +## Version 0.70 +*Release Date: September 3, 2024* * Improved Whitepaper.md and upgraded Whitepaper.pdf to Version 8. - *Simon Sarasova* * Improved Whitepaper.md. - *Simon Sarasova* diff --git a/Contributors.md b/Contributors.md index 3f9e6c8..8c27288 100644 --- a/Contributors.md +++ b/Contributors.md @@ -9,4 +9,4 @@ Many other people have written code for modules which are imported by Seekia. Th Name | Date Of First Commit | Number Of Commits --- | --- | --- -Simon Sarasova | June 13, 2023 | 300 \ No newline at end of file +Simon Sarasova | June 13, 2023 | 301 \ No newline at end of file diff --git a/gui/gui.go b/gui/gui.go index 1169f8b..d29f95d 100644 --- a/gui/gui.go +++ b/gui/gui.go @@ -682,7 +682,7 @@ func setHomePage(window fyne.Window){ // Also add a page that shows .eth URL seekiaLink := getBoldLabel("Seekia.net") - seekiaVersion := getLabelCentered("Seekia Version 0.60") + seekiaVersion := getLabelCentered("Seekia Version 0.70") seekiaLinkWithTitle := container.NewHBox(layout.NewSpacer(), seekiaLinkTitle, seekiaLink, layout.NewSpacer()) diff --git a/internal/appValues/appValues.go b/internal/appValues/appValues.go index 88d1248..503054f 100644 --- a/internal/appValues/appValues.go +++ b/internal/appValues/appValues.go @@ -8,7 +8,7 @@ import "errors" func GetSeekiaVersion()float32{ - version := float32(0.60) + version := float32(0.70) return version }