Skip to content

Commit 7966220

Browse files
committed
Updated version number.
1 parent 4cf160f commit 7966220

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
libip2proxy (4.2.0) jammy; urgency=medium
1+
libip2proxy (4.2.1) jammy; urgency=medium
22

33
* Initial Release.
44

docs/source/quickstart.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ This library can be compiled and installed in different platform. Please refer t
2828
##### AMD64
2929

3030
```bash
31-
curl -LO https://github.com/ip2location/ip2proxy-c/releases/download/4.2.0/ip2proxy-4.2.0-amd64.deb
32-
sudo dpkg -i ip2proxy-4.2.0-amd64.deb
31+
curl -LO https://github.com/ip2location/ip2proxy-c/releases/download/4.2.1/ip2proxy-4.2.1-amd64.deb
32+
sudo dpkg -i ip2proxy-4.2.1-amd64.deb
3333
```
3434

3535

3636

3737
##### ARM64
3838

3939
```bash
40-
curl -LO https://github.com/ip2location/ip2proxy-c/releases/download/4.2.0/ip2proxy-4.2.0-arm64.deb
41-
sudo dpkg -i ip2proxy-4.2.0-arm64.deb
40+
curl -LO https://github.com/ip2location/ip2proxy-c/releases/download/4.2.1/ip2proxy-4.2.1-arm64.deb
41+
sudo dpkg -i ip2proxy-4.2.1-arm64.deb
4242
```
4343

4444

ip2proxy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ static void print_usage(const char *argv0)
106106

107107
static void print_version()
108108
{
109-
printf("IP2Proxy version 4.2.0\n");
109+
printf("IP2Proxy version 4.2.1\n");
110110
}
111111

112112
static void print_footer(FILE *fout, const char *field, const char *format)

libIP2Proxy/IP2Proxy.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ extern "C" {
5454
#endif
5555
#endif
5656

57-
#define API_VERSION 4.2.0
57+
#define API_VERSION 4.2.1
5858
#define API_VERSION_MAJOR 4
5959
#define API_VERSION_MINOR 2
60-
#define API_VERSION_RELEASE 0
60+
#define API_VERSION_RELEASE 1
6161
#define API_VERSION_NUMERIC (((API_VERSION_MAJOR * 100) + API_VERSION_MINOR) * 100 + API_VERSION_RELEASE)
6262

6363
#define MAX_IPV4_RANGE 4294967295U

0 commit comments

Comments
 (0)