Skip to content

Commit

Permalink
Prepare v1.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
zjkmxy committed Feb 2, 2023
1 parent 6aeb87e commit c025b2e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PACKAGE = github.com/named-data/YaNFD
VERSION = 1.1.1.0
VERSION = 1.2.0.0
# COMMIT = git rev-parse --short HEAD
# DATE != date

Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,14 @@ It is compatible with existing NDN applications and utilizes the management tool

# Prerequisites

YaNFD requires Go 1.18+, although it may be possible to use older versions of Go.
Go will handle the installation of all other prerequisites.
YaNFD requires [Go 1.18+](https://go.dev/doc/install), although it may be possible to use older versions of Go.
Besides that, you will need `libpacp` and `g++` on Linux and MacOS. On Ubuntu, these libraries can be installed by:

```bash
sudo apt install build-essential pkg-config libpcap-dev
```

You may refer to [this](https://github.com/zjkmxy/YaNFD-docker) if you want to build a Docker image.

YaNFD has been developed and tested on Linux (namely, Ubuntu).
However, we have designed it with support for Windows, macOS, and BSD in mind.
Expand Down
12 changes: 6 additions & 6 deletions cmd/yanfdui/versioninfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
"FixedFileInfo": {
"FileVersion": {
"Major": 1,
"Minor": 1,
"Patch": 1,
"Minor": 2,
"Patch": 0,
"Build": 0
},
"ProductVersion": {
"Major": 1,
"Minor": 1,
"Patch": 1,
"Minor": 2,
"Patch": 0,
"Build": 0
},
"FileFlagsMask": "3f",
Expand All @@ -22,14 +22,14 @@
"Comments": "",
"CompanyName": "NDN Team",
"FileDescription": "The first NDN forwarder running on Windows.",
"FileVersion": "v1.1.1.0",
"FileVersion": "v1.2.0.0",
"InternalName": "254XinyuMa.YaNFD",
"LegalCopyright": "Copyright (C) 2020-2022 Eric Newberry",
"LegalTrademarks": "",
"OriginalFilename": "main.go",
"PrivateBuild": "",
"ProductName": "YaNFD",
"ProductVersion": "v1.1.1.0",
"ProductVersion": "v1.2.0.0",
"SpecialBuild": ""
},
"VarFileInfo": {
Expand Down
2 changes: 1 addition & 1 deletion cmd/yanfdui/yanfdui.exe.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<assemblyIdentity
type="win32"
name="254XinyuMa.YaNFD"
version="1.1.1.0"
version="1.2.0.0"
processorArchitecture="*"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
Expand Down

0 comments on commit c025b2e

Please sign in to comment.