1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-18 20:59:43 +02:00

Bump version to 3.3.2

This commit is contained in:
HarveyKandola 2019-10-14 12:27:41 +01:00
parent ccd756aca0
commit ef5b5cdb32
6 changed files with 1095 additions and 1092 deletions

View file

@ -13,9 +13,9 @@ All you need to provide is PostgreSQL, Microsoft SQL Server or any MySQL variant
## Latest Release
[Community Edition: v3.3.1](https://github.com/documize/community/releases)
[Community Edition: v3.3.2](https://github.com/documize/community/releases)
[Enterprise Edition: v3.3.1](https://www.documize.com/downloads)
[Enterprise Edition: v3.3.2](https://www.documize.com/downloads)
> *We provide frequent product updates for both cloud and self-hosted customers.*
>
@ -50,8 +50,8 @@ For all database types, Full-Text Search support (FTS) is mandatory.
## Technology Stack
- Go (v1.13.0)
- EmberJS (v3.12.0)
- Go (v1.13.1)
- Ember JS (v3.12.0)
## Authentication Options

View file

@ -41,8 +41,8 @@ func main() {
rt.Product = domain.Product{}
rt.Product.Major = "3"
rt.Product.Minor = "3"
rt.Product.Patch = "1"
rt.Product.Revision = "190925093840"
rt.Product.Patch = "2"
rt.Product.Revision = "191014113417"
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
rt.Product.Edition = domain.CommunityEdition
rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition)

File diff suppressed because one or more lines are too long

1
go.mod
View file

@ -19,6 +19,7 @@ require (
github.com/gorilla/handlers v1.4.0
github.com/gorilla/mux v1.6.2
github.com/jmoiron/sqlx v1.2.0
github.com/jteeuwen/go-bindata v3.0.7+incompatible // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/lib/pq v1.2.0
github.com/mb0/diff v0.0.0-20131118162322-d8d9a906c24d // indirect

2
go.sum
View file

@ -75,6 +75,8 @@ github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpO
github.com/jmoiron/sqlx v1.2.0 h1:41Ip0zITnmWNR/vHV+S4m+VoUivnWY5E4OJfLZjCJMA=
github.com/jmoiron/sqlx v1.2.0/go.mod h1:1FEQNm3xlJgrMD+FBdI9+xvCksHtbpVBBw5dYhBSsks=
github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU=
github.com/jteeuwen/go-bindata v3.0.7+incompatible h1:91Uy4d9SYVr1kyTJ15wJsog+esAZZl7JmEfTkwmhJts=
github.com/jteeuwen/go-bindata v3.0.7+incompatible/go.mod h1:JVvhzYOiGBnFSYRyV00iY8q7/0PThjIYav1p9h5dmKs=
github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=

View file

@ -1,6 +1,6 @@
{
"name": "documize",
"version": "3.3.1",
"version": "3.3.2",
"description": "Documize is the Integrated Document Environment (IDE)",
"repository": "",
"license": "AGPL",