mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-31 00:23:58 +00:00
1.2.10
This commit is contained in:
parent
0cd01b6ff8
commit
9765ba334a
@ -1,6 +1,12 @@
|
|||||||
ZeroTier Release Notes
|
ZeroTier Release Notes
|
||||||
======
|
======
|
||||||
|
|
||||||
|
# 2018-05-08 -- Version 1.2.10
|
||||||
|
|
||||||
|
* Fix bug loading `moons.d/` files for federated root operation.
|
||||||
|
* Fix compile problem with ZT_DEBUG on some versions of `clang`
|
||||||
|
* Fix slow network startup bug related to loading of `networks.d/` cache files
|
||||||
|
|
||||||
# 2018-04-27 -- Version 1.2.8
|
# 2018-04-27 -- Version 1.2.8
|
||||||
|
|
||||||
* Linux version once again builds with PIE (position independent executable) flags
|
* Linux version once again builds with PIE (position independent executable) flags
|
||||||
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
zerotier-one (1.2.10) unstable; urgency=medium
|
||||||
|
|
||||||
|
* See https://github.com/zerotier/ZeroTierOne for release notes.
|
||||||
|
|
||||||
|
-- Adam Ierymenko <adam.ierymenko@zerotier.com> Tue, 08 May 2018 01:00:00 -0700
|
||||||
|
|
||||||
zerotier-one (1.2.8) unstable; urgency=medium
|
zerotier-one (1.2.8) unstable; urgency=medium
|
||||||
|
|
||||||
* See https://github.com/zerotier/ZeroTierOne for release notes.
|
* See https://github.com/zerotier/ZeroTierOne for release notes.
|
||||||
|
@ -664,7 +664,7 @@
|
|||||||
<key>USE_HFS+_COMPRESSION</key>
|
<key>USE_HFS+_COMPRESSION</key>
|
||||||
<false/>
|
<false/>
|
||||||
<key>VERSION</key>
|
<key>VERSION</key>
|
||||||
<string>1.2.8</string>
|
<string>1.2.10</string>
|
||||||
</dict>
|
</dict>
|
||||||
<key>PROJECT_COMMENTS</key>
|
<key>PROJECT_COMMENTS</key>
|
||||||
<dict>
|
<dict>
|
||||||
|
@ -26,7 +26,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
|
|||||||
<!-- version should MATCH as closely as possible with the underlying software -->
|
<!-- version should MATCH as closely as possible with the underlying software -->
|
||||||
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
|
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
|
||||||
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
|
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
|
||||||
<version>1.2.8</version>
|
<version>1.2.10</version>
|
||||||
<!-- <packageSourceUrl>Where is this Chocolatey package located (think GitHub)? packageSourceUrl is highly recommended for the community feed</packageSourceUrl>-->
|
<!-- <packageSourceUrl>Where is this Chocolatey package located (think GitHub)? packageSourceUrl is highly recommended for the community feed</packageSourceUrl>-->
|
||||||
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
|
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
|
||||||
<!--<owners>ZeroTier, Inc.</owners>-->
|
<!--<owners>ZeroTier, Inc.</owners>-->
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
/**
|
/**
|
||||||
* Revision
|
* Revision
|
||||||
*/
|
*/
|
||||||
#define ZEROTIER_ONE_VERSION_REVISION 8
|
#define ZEROTIER_ONE_VERSION_REVISION 10
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Build version
|
* Build version
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<Run Text="ZeroTier One"/>
|
<Run Text="ZeroTier One"/>
|
||||||
</Paragraph>
|
</Paragraph>
|
||||||
<Paragraph TextAlignment="Center">
|
<Paragraph TextAlignment="Center">
|
||||||
<Run FontSize="14" Text="Version 1.2.8"/>
|
<Run FontSize="14" Text="Version 1.2.10"/>
|
||||||
<LineBreak/>
|
<LineBreak/>
|
||||||
<Run FontSize="14" Text="(c) 2011-2017 ZeroTier, Inc."/>
|
<Run FontSize="14" Text="(c) 2011-2017 ZeroTier, Inc."/>
|
||||||
<LineBreak/>
|
<LineBreak/>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
Name: zerotier-one
|
Name: zerotier-one
|
||||||
Version: 1.2.8
|
Version: 1.2.10
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: ZeroTier One network virtualization service
|
Summary: ZeroTier One network virtualization service
|
||||||
|
|
||||||
@ -145,6 +145,9 @@ esac
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue May 08 2018 Adam Ierymenko <adam.ierymenko@zerotier.com> - 1.2.10-0.1
|
||||||
|
- see https://github.com/zerotier/ZeroTierOne for release notes
|
||||||
|
|
||||||
* Thu May 03 2018 Adam Ierymenko <adam.ierymenko@zerotier.com> - 1.2.8-0.1
|
* Thu May 03 2018 Adam Ierymenko <adam.ierymenko@zerotier.com> - 1.2.8-0.1
|
||||||
- see https://github.com/zerotier/ZeroTierOne for release notes
|
- see https://github.com/zerotier/ZeroTierOne for release notes
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user