Skip to content

Commit f098fdc

Browse files
committed
update version to 1.8.0
1 parent b0aee32 commit f098fdc

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66

77
## [Unreleased]
88

9+
Nothing yet.
10+
11+
12+
## [1.8.0] -- 2025-06-16
13+
914
_Changes since 1.7.3_
1015

1116
### Added

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,20 @@ applications for each OS.
3838
If you are concerned about security, you may grab the source code and build an executable on your own, or
3939
make a sponsorship if you admire Hello HTTP.
4040

41-
To build an executable, grab the code, make sure there is a JDK 17+ and git installed, and run:
41+
### Build a release manually
42+
43+
To build an executable, grab the code, make sure there is a JDK 17+ and git installed. Then, run below to build a release version:
44+
45+
```shell
46+
./gradlew createReleaseDistributable packageReleaseDistributionForCurrentOS
47+
```
48+
49+
The build will be available at `$projectDir/build/compose/binaries/main-release/app`.
50+
51+
### Build a non-minified version manually
52+
53+
If there is a problem with the minified version, build a non-release version by running:
54+
4255
```shell
4356
./gradlew createDistributable packageDistributionForCurrentOS
4457
```
@@ -67,7 +80,6 @@ express your desired priorities in the issue tracker.
6780
- Binary request editor
6881
- Overriding default headers
6982
- Checking for version updates
70-
- Establish release builds (minified and without debug logs and symbols)
7183

7284
## Development
7385

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212
}
1313

1414
group = "com.sunnychung.application"
15-
version = "1.8.0-SNAPSHOT" // must be in 'x.y.z' for native distributions
15+
version = "1.8.0" // must be in 'x.y.z' for native distributions
1616

1717
repositories {
1818
google()

0 commit comments

Comments
 (0)