Skip to content

Commit

Permalink
Release to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zjkmxy committed Jan 10, 2024
1 parent df57438 commit 6e68734
Show file tree
Hide file tree
Showing 6 changed files with 12 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.2.0.0
VERSION = 1.3.0.0
# COMMIT = git rev-parse --short HEAD
# DATE != date

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

# Prerequisites

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

```bash
Expand Down Expand Up @@ -41,7 +41,7 @@ rm ./yanfd.toml

On MacOS, one also needs to change `socket_path` to `/var/run/nfd/nfd.sock` in the copied configuration file.

### On Windows 10
### On Windows 10/11
```text
curl -o yanfd.toml https://raw.githubusercontent.com/named-data/YaNFD/master/yanfd.toml.sample
mkdir %APPDATA%\ndn
Expand Down
10 changes: 5 additions & 5 deletions cmd/yanfdui/versioninfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"FixedFileInfo": {
"FileVersion": {
"Major": 1,
"Minor": 2,
"Minor": 3,
"Patch": 0,
"Build": 0
},
"ProductVersion": {
"Major": 1,
"Minor": 2,
"Minor": 3,
"Patch": 0,
"Build": 0
},
Expand All @@ -22,14 +22,14 @@
"Comments": "",
"CompanyName": "NDN Team",
"FileDescription": "The first NDN forwarder running on Windows.",
"FileVersion": "v1.2.0.0",
"FileVersion": "v1.3.0.0",
"InternalName": "254XinyuMa.YaNFD",
"LegalCopyright": "Copyright (C) 2020-2022 Eric Newberry",
"LegalCopyright": "Copyright (C) 2020-2024 Eric Newberry",
"LegalTrademarks": "",
"OriginalFilename": "main.go",
"PrivateBuild": "",
"ProductName": "YaNFD",
"ProductVersion": "v1.2.0.0",
"ProductVersion": "v1.3.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.2.0.0"
version="1.3.0.0"
processorArchitecture="*"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require (
github.com/pelletier/go-toml v1.9.5
github.com/stretchr/testify v1.8.4
github.com/zjkmxy/go-ndn v0.0.6
golang.org/x/exp v0.0.0-20231206192017-f3f8817b8deb
golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc
golang.org/x/sys v0.15.0
)

Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ golang.org/x/exp v0.0.0-20231006140011-7918f672742d h1:jtJma62tbqLibJ5sFQz8bKtEM
golang.org/x/exp v0.0.0-20231006140011-7918f672742d/go.mod h1:ldy0pHrwJyGW56pPQzzkH36rKxoZW1tw7ZJpeKx+hdo=
golang.org/x/exp v0.0.0-20231206192017-f3f8817b8deb h1:c0vyKkb6yr3KR7jEfJaOSv4lG7xPkbN6r52aJz1d8a8=
golang.org/x/exp v0.0.0-20231206192017-f3f8817b8deb/go.mod h1:iRJReGqOEeBhDZGkGbynYwcHlctCvnjTYIamk7uXpHI=
golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc h1:ao2WRsKSzW6KuUY9IWPwWahcHCgR0s52IfwutMfEbdM=
golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc/go.mod h1:iRJReGqOEeBhDZGkGbynYwcHlctCvnjTYIamk7uXpHI=
golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
Expand Down

0 comments on commit 6e68734

Please sign in to comment.