Skip to content

Commit

Permalink
Release 0.6.3 - updated version numbers, copyright years, and changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
mstefarov committed Apr 12, 2015
1 parent 8f37bc9 commit 3debdfc
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 14 deletions.
14 changes: 7 additions & 7 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Named Binary Tag (NBT) is a structured binary file format used by Minecraft.
fNbt is a small library, written in C# for .NET 3.5+. It provides functionality
to create, load, traverse, modify, and save NBT files and streams.

Current released version is 0.6.2 (17 November 2014).
Current released version is 0.6.3 (12 April 2015).

fNbt is based in part on Erik Davidson's (aphistic's) original LibNbt library,
now completely rewritten by Matvei Stefarov (fragmer).
Expand Down Expand Up @@ -30,14 +30,14 @@ Latest version of fNbt requires .NET Framework 3.5+ (client or full profile).

Package @ NuGet: https://www.nuget.org/packages/fNbt/

Compiled binary: https://fcraft.net/fnbt/fNbt_v0.6.2.zip
SHA1: 82b1cfcf114a3d5411f105e68e328fd5d75e34dd
Compiled binary: https://fcraft.net/fnbt/fNbt_v0.6.3.zip
SHA1: c743b4e8af649af75d7ab097dfec2bc897a70689

Amalgamation (single source file):
Non-annotated: https://fcraft.net/fnbt/fNbt_v0.6.2.cs
SHA1: 2aa56a68f0b8343dfebd54b2bfe1f1b6319a3e98
Annotated: https://fcraft.net/fnbt/fNbt_v0.6.2_Annotated.cs
SHA1: 77f291e0738e0bae6718a71cc2e8f8ca2b2e0f54
Non-annotated: https://fcraft.net/fnbt/fNbt_v0.6.3.cs
SHA1: 2a2cd74bee0bab765d9647e0cc048927248d0142
Annotated: https://fcraft.net/fnbt/fNbt_v0.6.3_Annotated.cs
SHA1: 66ab908708678272a58d9e71f1615f68caba79d7
(using JetBrains.Annotations, for ReSharper)


Expand Down
3 changes: 3 additions & 0 deletions docs/Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
0.6.3 (fNbt)
- Empty NbtLists now allow "TAG_End" as its ListType.

0.6.2 (fNbt)
- NbtTags now implement ICloneable and provide copy constructors.
- fNbt is now compatible with /checked compiler option.
Expand Down
2 changes: 1 addition & 1 deletion docs/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2012-2014, Matvei "fragmer" Stefarov <me@matvei.org>
Copyright (c) 2012-2015, Matvei "fragmer" Stefarov <me@matvei.org>
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
6 changes: 3 additions & 3 deletions fNbt.Test/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("github.com/fragmer/fNbt")]
[assembly: AssemblyProduct("fNbt.Test")]
[assembly: AssemblyCopyright("2012-2014 Matvei Stefarov")]
[assembly: AssemblyCopyright("2012-2015 Matvei Stefarov")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -35,5 +35,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("0.6.2.0")]
[assembly: AssemblyFileVersion("0.6.2.0")]
[assembly: AssemblyVersion("0.6.3.0")]
[assembly: AssemblyFileVersion("0.6.3.0")]
6 changes: 3 additions & 3 deletions fNbt/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("github.com/fragmer/fNbt")]
[assembly: AssemblyProduct("fNbt")]
[assembly: AssemblyCopyright("2012-2014 Matvei Stefarov")]
[assembly: AssemblyCopyright("2012-2015 Matvei Stefarov")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -36,8 +36,8 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("0.6.2.0")]
[assembly: AssemblyFileVersion("0.6.2.0")]
[assembly: AssemblyVersion("0.6.3.0")]
[assembly: AssemblyFileVersion("0.6.3.0")]

// Potentially speed up resource probes

Expand Down

0 comments on commit 3debdfc

Please sign in to comment.