Skip to content

Commit c025b2e

Browse files
committed
Prepare v1.2.0 release
1 parent 6aeb87e commit c025b2e

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PACKAGE = github.com/named-data/YaNFD
2-
VERSION = 1.1.1.0
2+
VERSION = 1.2.0.0
33
# COMMIT = git rev-parse --short HEAD
44
# DATE != date
55

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,14 @@ It is compatible with existing NDN applications and utilizes the management tool
55

66
# Prerequisites
77

8-
YaNFD requires Go 1.18+, although it may be possible to use older versions of Go.
9-
Go will handle the installation of all other prerequisites.
8+
YaNFD requires [Go 1.18+](https://go.dev/doc/install), although it may be possible to use older versions of Go.
9+
Besides that, you will need `libpacp` and `g++` on Linux and MacOS. On Ubuntu, these libraries can be installed by:
10+
11+
```bash
12+
sudo apt install build-essential pkg-config libpcap-dev
13+
```
14+
15+
You may refer to [this](https://github.com/zjkmxy/YaNFD-docker) if you want to build a Docker image.
1016

1117
YaNFD has been developed and tested on Linux (namely, Ubuntu).
1218
However, we have designed it with support for Windows, macOS, and BSD in mind.

cmd/yanfdui/versioninfo.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"FixedFileInfo": {
33
"FileVersion": {
44
"Major": 1,
5-
"Minor": 1,
6-
"Patch": 1,
5+
"Minor": 2,
6+
"Patch": 0,
77
"Build": 0
88
},
99
"ProductVersion": {
1010
"Major": 1,
11-
"Minor": 1,
12-
"Patch": 1,
11+
"Minor": 2,
12+
"Patch": 0,
1313
"Build": 0
1414
},
1515
"FileFlagsMask": "3f",
@@ -22,14 +22,14 @@
2222
"Comments": "",
2323
"CompanyName": "NDN Team",
2424
"FileDescription": "The first NDN forwarder running on Windows.",
25-
"FileVersion": "v1.1.1.0",
25+
"FileVersion": "v1.2.0.0",
2626
"InternalName": "254XinyuMa.YaNFD",
2727
"LegalCopyright": "Copyright (C) 2020-2022 Eric Newberry",
2828
"LegalTrademarks": "",
2929
"OriginalFilename": "main.go",
3030
"PrivateBuild": "",
3131
"ProductName": "YaNFD",
32-
"ProductVersion": "v1.1.1.0",
32+
"ProductVersion": "v1.2.0.0",
3333
"SpecialBuild": ""
3434
},
3535
"VarFileInfo": {

cmd/yanfdui/yanfdui.exe.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<assemblyIdentity
44
type="win32"
55
name="254XinyuMa.YaNFD"
6-
version="1.1.1.0"
6+
version="1.2.0.0"
77
processorArchitecture="*"/>
88
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
99
<security>

0 commit comments

Comments
 (0)