diff --git a/CHANGELOG.md b/CHANGELOG.md index aad6416..811fd4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [0.11.0] - 2021-04-25 +## [0.11.0] - 2021-06-27 ### Added - Rolling window Mean and StdDev - GroupBy and Aggregate diff --git a/README.md b/README.md index 49e5742..c653ce8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ Gota: DataFrames, Series and Data Wrangling for Go ================================================== +Meet us on Slack: Slack: [gophers.slack.com](https://gophers.slack.com) #go-gota ([invite](https://gophersinvite.herokuapp.com/)) + This is an implementation of DataFrames, Series and data wrangling methods for the Go programming language. The API is still in flux so *use at your own risk*. diff --git a/ROADMAP.md b/ROADMAP.md new file mode 100644 index 0000000..80036e1 --- /dev/null +++ b/ROADMAP.md @@ -0,0 +1,12 @@ +# ROADMAP + +## [0.12.0] + +- more functionality of [Pandas](https://pandas.pydata.org/pandas-docs/stable/reference/index.html) (without copying the API) +- more functional style of the API ([like Scala has](https://www.scala-lang.org/api/current/scala/collection/immutable/List.html)) +- deprecate API parts not fitting the functional style + +## [0.13.0] + +- maybe Go Generics are in place +- see, how we can shift towards more typesavety (using interface{} everywhere is ugly)