Skip to content

Commit edd47b1

Browse files
committed
Update CHANGELOG.md and version.
1 parent 6e51b41 commit edd47b1

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# v2.6.0-beta1
2+
- HTTP server now runs in main loop, it make possible easy extend API without worry about thread synchronization.
3+
- Added initial graceful reload support, miner will reload configuration if config file changed, disabled by default until it will be fully implemented and tested.
4+
- Added API endpoint `PUT /1/config` to update current config.
5+
- Added API endpoint `GET /1/config` to get current active config.
6+
- API endpoint `GET /` now deprecated, use `GET /1/summary` instead.
7+
- Added `--api-no-ipv6` and similar config option to disable IPv6 support for HTTP API.
8+
- Added `--api-no-restricted` to enable full access to api, this option has no effect if `--api-access-token` not specified.
9+
110
# v2.5.2
211
- [#448](https://github.com/xmrig/xmrig/issues/478) Fixed broken reconnect.
312

src/version.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@
2727
#define APP_ID "xmrig"
2828
#define APP_NAME "XMRig"
2929
#define APP_DESC "XMRig CPU miner"
30-
#define APP_VERSION "2.5.2"
30+
#define APP_VERSION "2.6.0-beta1"
3131
#define APP_DOMAIN "xmrig.com"
3232
#define APP_SITE "www.xmrig.com"
3333
#define APP_COPYRIGHT "Copyright (C) 2016-2018 xmrig.com"
3434
#define APP_KIND "cpu"
3535

3636
#define APP_VER_MAJOR 2
37-
#define APP_VER_MINOR 5
38-
#define APP_VER_BUILD 2
39-
#define APP_VER_REV 0
37+
#define APP_VER_MINOR 6
38+
#define APP_VER_BUILD 0
39+
#define APP_VER_REV 1
4040

4141
#ifdef _MSC_VER
4242
# if (_MSC_VER >= 1910)

0 commit comments

Comments
 (0)