Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

go 1.14 #10467

Merged
merged 26 commits into from
Mar 20, 2020
Merged

go 1.14 #10467

Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
367e043
go 1.14
techknowlogick Feb 26, 2020
4cec411
go 1.12 is now lowest we support
techknowlogick Feb 26, 2020
7f96296
Merge branch 'master' into go-1.14
sapk Feb 27, 2020
6c7d05d
update docs
techknowlogick Mar 3, 2020
0998a0d
update docs
techknowlogick Mar 3, 2020
82a4d57
make vendor
techknowlogick Mar 3, 2020
ce9b535
Merge branch 'master' into go-1.14
techknowlogick Mar 3, 2020
5bb7992
make vendor
techknowlogick Mar 3, 2020
1030613
Merge branch 'master' into go-1.14
lunny Mar 3, 2020
a95c8e5
Merge branch 'master' into go-1.14
lafriks Mar 4, 2020
53cc5b1
Merge branch 'master' of github.com:go-gitea/gitea into go-1.14
jolheiser Mar 5, 2020
e87db01
Update go versions in docs
jolheiser Mar 5, 2020
5933dc4
update golang.org/x/sys deps
techknowlogick Mar 5, 2020
ffb38a1
Merge branch 'go-1.14' of github.com:techknowlogick/gitea into go-1.14
techknowlogick Mar 5, 2020
25c109c
Merge branch 'master' into go-1.14
techknowlogick Mar 5, 2020
919173c
target specifc go version with xgo
techknowlogick Mar 5, 2020
4f7def0
Merge branch 'master' into go-1.14
lafriks Mar 5, 2020
187cf47
Merge branch 'master' into go-1.14
techknowlogick Mar 9, 2020
144d150
Merge branch 'master' into go-1.14
techknowlogick Mar 9, 2020
1e15d95
split tool versions out as variable
techknowlogick Mar 9, 2020
a4041bf
make vendor
techknowlogick Mar 9, 2020
38ae765
-u x/net
techknowlogick Mar 9, 2020
e0fa30f
Merge branch 'master' into go-1.14
techknowlogick Mar 19, 2020
594ed33
make vendor
techknowlogick Mar 19, 2020
0a38de3
Merge branch 'master' into go-1.14
techknowlogick Mar 19, 2020
8d4b98d
Merge branch 'master' into go-1.14
techknowlogick Mar 20, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' of github.com:go-gitea/gitea into go-1.14
  • Loading branch information
jolheiser committed Mar 5, 2020
commit 53cc5b117e10a9fcf426e7c20b5a5cea67e0860a
2 changes: 1 addition & 1 deletion docs/content/doc/advanced/hacking-on-gitea.en-us.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ necessary. To be able to use these you must have the `"$GOPATH"/bin` directory
on the executable path. If you don't add the go bin directory to the
executable path you will have to manage this yourself.

**Note 2**: Go version 1.12 or higher is required; however, it is important
**Note 2**: Go version {{< min-go-version >}} or higher is required; however, it is important
to note that our continuous integration will check that the formatting of the
source code is not changed by `gofmt` using `make fmt-check`. Unfortunately,
the results of `gofmt` can differ by the version of `go`. It is therefore
Expand Down
6 changes: 3 additions & 3 deletions docs/content/doc/installation/from-source.en-us.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ necessary. To be able to use these, you must have the `"$GOPATH/bin"` directory
on the executable path. If you don't add the go bin directory to the
executable path, you will have to manage this yourself.

**Note 2**: Go version 1.12 or higher is required. However, it is recommended to
**Note 2**: Go version {{< min-go-version >}} or higher is required. However, it is recommended to
obtain the same version as our continuous integration, see the advice given in
<a href='{{< relref "doc/advanced/hacking-on-gitea.en-us.md" >}}'>Hacking on
Gitea</a>
Expand Down Expand Up @@ -81,7 +81,7 @@ git checkout v{{< version >}} # or git checkout pr-xyz

To build from source, the following programs must be present on the system:

- `go` 1.12.0 or higher, see [here](https://golang.org/dl/)
- `go` {{< min-go-version >}} or higher, see [here](https://golang.org/dl/)
- `node` 10.0.0 or higher with `npm`, see [here](https://nodejs.org/en/download/)
- `make`, see <a href='{{< relref "doc/advanced/make.en-us.md" >}}'>here</a>

Expand Down Expand Up @@ -116,7 +116,7 @@ TAGS="bindata sqlite sqlite_unlock_notify" make build

The `build` target is split into two sub-targets:

- `make backend` which requires [Go 1.12](https://golang.org/dl/) or greater.
- `make backend` which requires [Go {{< min-go-version >}}](https://golang.org/dl/) or greater.
- `make frontend` which requires [Node.js 10.0.0](https://nodejs.org/en/download/) or greater.

If pre-built frontend files are present it is possible to only build the backend:
Expand Down
2 changes: 1 addition & 1 deletion docs/content/doc/installation/from-source.zh-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ git checkout v{{< version >}}

要从源代码进行编译,以下依赖程序必须事先安装好:

- `go` 1.12 或以上版本, 详见 [here](https://golang.org/dl/)
- `go` {{< min-go-version >}} 或以上版本, 详见 [here](https://golang.org/dl/)
- `node` 10.0.0 或以上版本,并且安装 `npm`, 详见 [here](https://nodejs.org/en/download/)
- `make`, 详见 <a href='{{< relref "make.zh-cn.md" >}}'>这里</a>

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.