Bump version
This commit is contained in:
parent
ea91e676cf
commit
896336f7c2
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1126,3 +1126,13 @@
|
|||
* Fix bug of DisableGravatar default value (#22297)
|
||||
* Fix key signature error page (#22229) (#22230)
|
||||
|
||||
[1.26.2]
|
||||
* Update Gitea to 1.18.2
|
||||
* [Full changelog](https://github.com/go-gitea/gitea/releases/tag/v1.18.2)
|
||||
* When updating by rebase we need to set the environment for head repo (#22535) (#22536)
|
||||
* Fix issue not auto-closing when it includes a reference to a branch (#22514) (#22521)
|
||||
* Fix invalid issue branch reference if not specified in template (#22513) (#22520)
|
||||
* Fix 500 error viewing pull request when fork has pull requests disabled (#22512) (#22515)
|
||||
* Reliable selection of admin user (#22509) (#22511)
|
||||
* Set disable_gravatar/enable_federated_avatar when offline mode is true (#22479) (#22496)
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
"author": "Gitea developers",
|
||||
"description": "file://DESCRIPTION.md",
|
||||
"tagline": "A painless self-hosted Git Service",
|
||||
"version": "1.26.1",
|
||||
"upstreamVersion": "1.18.1",
|
||||
"version": "1.26.2",
|
||||
"upstreamVersion": "1.18.2",
|
||||
"healthCheckPath": "/explore",
|
||||
"httpPort": 3000,
|
||||
"memoryLimit": 536870912,
|
||||
|
|
|
@ -19,7 +19,7 @@ WORKDIR /home/git
|
|||
# for autosign feature
|
||||
ENV GNUPGHOME="/app/data/gnupg"
|
||||
|
||||
ARG VERSION=1.18.1
|
||||
ARG VERSION=1.18.2
|
||||
|
||||
RUN curl -L https://dl.gitea.io/gitea/${VERSION}/gitea-${VERSION}-linux-amd64 -o /home/git/gitea/gitea \
|
||||
&& chmod +x /home/git/gitea/gitea
|
||||
|
|
Loading…
Reference in New Issue