Skip to content

Commit c0ed3c3

Browse files
committed
Bump version
1 parent ab5314d commit c0ed3c3

File tree

5 files changed

+791
-791
lines changed

5 files changed

+791
-791
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ All you need to provide is PostgreSQL, Microsoft SQL Server or any MySQL variant
1313

1414
## Latest Release
1515

16-
[Community Edition: v2.3.1](https://github.com/documize/community/releases)
16+
[Community Edition: v2.3.2](https://github.com/documize/community/releases)
1717

18-
[Enterprise Edition: v2.3.1](https://www.documize.com/downloads)
18+
[Enterprise Edition: v2.3.2](https://www.documize.com/downloads)
1919

2020
> *We provide frequent product updates for both cloud and self-hosted customers.*
2121
>
@@ -49,7 +49,7 @@ Heck, Documize will probably run just fine on a Raspberry Pi.
4949

5050
## Technology Stack
5151

52-
- Go (v1.12.3)
52+
- Go (v1.12.4)
5353
- Ember JS (v3.8.0)
5454

5555
## Authentication Options

build.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ cd ..
5353

5454
echo "Compiling Windows"
5555
set GOOS=windows
56-
go build -ldflags="-s -w" -gcflags="all=-trimpath=$GOPATH" -o bin/documize-community-windows-amd64.exe edition/community.go
56+
go build -gcflags="all=-trimpath=$GOPATH" -o bin/documize-community-windows-amd64.exe edition/community.go
5757

5858
echo "Compiling Linux"
5959
set GOOS=linux
60-
go build -ldflags="-s -w" -gcflags="all=-trimpath=$GOPATH" -o bin/documize-community-linux-amd64 edition/community.go
60+
go build -gcflags="all=-trimpath=$GOPATH" -o bin/documize-community-linux-amd64 edition/community.go
6161

6262
echo "Compiling Darwin"
6363
set GOOS=darwin
64-
go build -ldflags="-s -w" -gcflags="all=-trimpath=$GOPATH" -o bin/documize-community-darwin-amd64 edition/community.go
64+
go build -gcflags="all=-trimpath=$GOPATH" -o bin/documize-community-darwin-amd64 edition/community.go

edition/community.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ func main() {
4141
rt.Product = domain.Product{}
4242
rt.Product.Major = "2"
4343
rt.Product.Minor = "3"
44-
rt.Product.Patch = "1"
45-
rt.Product.Revision = "190411165656"
44+
rt.Product.Patch = "2"
45+
rt.Product.Revision = "190416125622"
4646
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
4747
rt.Product.Edition = domain.CommunityEdition
4848
rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition)

0 commit comments

Comments
 (0)