Skip to content

Commit ed46b1a

Browse files
committed
Project version increased to 1.6
1 parent 27a224b commit ed46b1a

File tree

12 files changed

+74
-79
lines changed

12 files changed

+74
-79
lines changed

BNCompiler/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>cz.drasil</groupId>
88
<artifactId>binarynotes-parent</artifactId>
9-
<version>1.5.5</version>
9+
<version>1.6</version>
1010
<relativePath>..</relativePath>
1111
</parent>
1212

BNCompiler/src/main/java/org/bn/compiler/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
public class Main {
3838

39-
private static final String VERSION = "1.5.5";
39+
private static final String VERSION = "1.6";
4040

4141
private CompilerArgs arguments = null;
4242

BNCompiler/src/main/scripts/bncompiler.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ shift
99
shift
1010
goto setupArgs
1111
:doneStart
12-
java -jar "%BN_HOME%/bncompiler-1.5.5.jar" %CMD_LINE_ARGS%
12+
java -jar "%BN_HOME%/bncompiler-1.6.jar" %CMD_LINE_ARGS%
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
22
BN_HOME=`dirname $0`
3-
java -jar $BN_HOME/bncompiler\-1.5.5.jar $*
3+
java -jar $BN_HOME/bncompiler\-1.6.jar $*
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
call ../bncompiler.cmd -m java -o output/ldapv3 -ns ldapv3 -f ldapv3.asn
2-
javac -cp ../../../../JavaLibrary/target/binarynotes-1.5.5.jar output/ldapv3/*.java
2+
javac -cp ../../../../JavaLibrary/target/binarynotes-1.6.jar output/ldapv3/*.java
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
call ../bncompiler.cmd -m java -o output/test -ns org.bn.coders.test_asn -f test.asn
2-
javac -cp ../../../../JavaLibrary/target/binarynotes-1.5.5.jar output/test/*.java
2+
javac -cp ../../../../JavaLibrary/target/binarynotes-1.6.jar output/test/*.java

BinaryNotes.NET/BinaryNotes/Properties/AssemblyInfo.cs

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32

43
// General Information about an assembly is controlled through the following
54
// set of attributes. Change these attribute values to modify the information
65
// associated with an assembly.
7-
8-
// TODO: Review the values of the assembly attributes
9-
106
[assembly: AssemblyTitle("BinaryNotes Library")]
117
[assembly: AssemblyDescription("BinaryNotes Library")]
12-
[assembly: AssemblyCompany("http://bnotes.sf.net")]
8+
[assembly: AssemblyCompany("Abdulla G. Abdurakhmanov, Pavel Drasil")]
139
[assembly: AssemblyProduct("BinaryNotes")]
1410
[assembly: AssemblyCopyright("Copyright © 2006-2015 Abdulla G. Abdurakhmanov, Pavel Drasil")]
1511
[assembly: AssemblyTrademark("")]
1612
[assembly: AssemblyCulture("")]
1713

18-
1914
// Version information for an assembly consists of the following four values:
2015
//
2116
// Major Version
@@ -25,10 +20,10 @@
2520
//
2621
// You can specify all the values or you can default the Revision and Build Numbers
2722
// by using the '*' as shown below:
23+
// [assembly: AssemblyVersion("1.0.*")]
24+
[assembly: AssemblyVersion("1.6")]
25+
[assembly: AssemblyFileVersion("1.6")]
2826

29-
[assembly: AssemblyVersion("1.5.5")]
30-
31-
//
3227
// In order to sign your assembly you must specify a key to use. Refer to the
3328
// Microsoft .NET Framework documentation for more information on assembly signing.
3429
//
@@ -58,6 +53,3 @@
5853
[assembly: AssemblyDelaySign(false)]
5954
[assembly: AssemblyKeyFile("")]
6055
[assembly: AssemblyKeyName("")]
61-
62-
63-
[assembly: AssemblyFileVersionAttribute("1.5.5")]

BinaryNotes.NET/BinaryNotesTests/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following
65
// set of attributes. Change these attribute values to modify the information
76
// associated with an assembly.
87
[assembly: AssemblyTitle("UnitTests for BinaryNotes")]
98
[assembly: AssemblyDescription("UnitTests for BinaryNotes")]
10-
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("(c) Abdulla G. Abdurakhmanov")]
9+
[assembly: AssemblyCompany("Abdulla G. Abdurakhmanov, Pavel Drasil")]
1210
[assembly: AssemblyProduct("BinaryNotes")]
1311
[assembly: AssemblyCopyright("Copyright © 2006-2015 Abdulla G. Abdurakhmanov, Pavel Drasil")]
1412
[assembly: AssemblyTrademark("")]
@@ -32,5 +30,7 @@
3230
// You can specify all the values or you can default the Build and Revision Numbers
3331
// by using the '*' as shown below:
3432
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.5.5")]
36-
[assembly: AssemblyFileVersion("1.5.5")]
33+
[assembly: AssemblyVersion("1.6")]
34+
[assembly: AssemblyFileVersion("1.6")]
35+
36+
[assembly: AssemblyConfiguration("")]

ChangeLog.txt

Lines changed: 56 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,20 @@ ChangeLog
55
[!] - Important warning or note
66
{<component>} - Component/Group that changed
77

8-
1.5.5 {lib} [+] API improvements (added generics, reviewed thrown exceptions)
9-
-
10-
1.5.4 {all} [+] Added support for Enumerated with default value
11-
1.5.4 {all} [+] Default values are skipped during encoding
12-
1.5.4 {comp} [*] Fixed failing unit test
13-
1.5.4 {comp} [+] Output folder is created if it does not exist
14-
1.5.4 {comp} [!] Module files moved inside the compiler JAR, removed the command line parameter specifying the path
15-
1.5.4 {lib} [!] .NET unit tests reworked for the Microsoft unit testing framework
16-
1.5.4 {all} [!] Removed BinaryNotesMQ and .NET CF stuff
17-
1.5.4 {all} [!] Project structure completely reworked (building using Maven, removed unnecessary and generated files)
18-
1.5.4 {all} [!] Project adopted by Pavel Drasil
8+
1.6.0 {lib} [*] Fixed encoding and decoding of negative and infinity real numbers
9+
1.6.0 {all} [+] Migrated to Java 7
10+
-
11+
1.5.5 {lib} [+] API improvements (added generics, reviewed thrown exceptions)
12+
-
13+
1.5.4 {all} [+] Added support for Enumerated with default value
14+
1.5.4 {all} [+] Default values are skipped during encoding
15+
1.5.4 {comp} [*] Fixed failing unit test
16+
1.5.4 {comp} [+] Output folder is created if it does not exist
17+
1.5.4 {comp} [!] Module files moved inside the compiler JAR, removed the command line parameter specifying the path
18+
1.5.4 {lib} [!] .NET unit tests reworked for the Microsoft unit testing framework
19+
1.5.4 {all} [!] Removed BinaryNotesMQ and .NET CF stuff
20+
1.5.4 {all} [!] Project structure completely reworked (building using Maven, removed unnecessary and generated files)
21+
1.5.4 {all} [!] Project adopted by Pavel Drasil
1922
-
2023
1.5.3 {lib} [+] BinaryNotes.NET migrated to MSVC10
2124
1.5.3 {all} [!] Migrated to Apache License v2
@@ -46,7 +49,7 @@ ChangeLog
4649
1.5.0 {lib} [*] Fixed an encoding bug of ENUMERATION for PER. Thanks to Tomas Carlsson (Bug #1699806).
4750
1.5.0 {lib} [*] Fixed an UTF8String (and other string datatypes instead of PrintableString) encoding for primitive SEQUENCE OF declaration
4851
1.5.0 {comp} [+] Added support for simple value definitions.
49-
( The original LDAP v3 ASN definition without any modification parsed successfully now.)
52+
(The original LDAP v3 ASN definition without any modification parsed successfully now.)
5053
1.5.0 {comp} [*] Fixes for some ASN.1 grammatic definitions
5154
1.5.0 {doc} [*] Some documentation fixes for .NET samples
5255
1.5.0 {comp} [+] Added support for COMPONENT OF declaration (for CHOICE/SEQUENCE constructions)
@@ -91,53 +94,53 @@ ChangeLog
9194
1.3.0 {doc} [+] Add new documentation for BinaryNotes (Dist\doc)
9295
1.3.0 {lib} [*] Fixed BER encoding for long tags
9396
1.3.0 {all} [!] Started the new project - BinaryNotes Message Queues (BNMQ). The more details will be available later at bnotes.sf.net.
94-
1.3.0 {comp} [*] Fixed incorrect default value generation for BOOLEAN
97+
1.3.0 {comp} [*] Fixed incorrect default value generation for BOOLEAN
9598
1.3.0 {all} [+] Updated version info & distribution package
9699
-
97100
1.2.3 {lib} [*] Fixed BER sequence decoder problem
98101
1.2.3 {lib} [*] Fixed NullPointerException when decoding choice in choice
99-
1.2.3 {dist} [+] Added BinaryNotes debug library for Java (dist)
100-
1.2.3 {lib} [*] PER/Unaligned encoding 7bit string has been fixed
101-
1.2.3 {comp} [*] Long integer range is incorrect defined
102-
1.2.3 {comp} [*] Fixed Boolean boxed type declaration
102+
1.2.3 {dist} [+] Added BinaryNotes debug library for Java (dist)
103+
1.2.3 {lib} [*] PER/Unaligned encoding 7bit string has been fixed
104+
1.2.3 {comp} [*] Long integer range is incorrect defined
105+
1.2.3 {comp} [*] Fixed Boolean boxed type declaration
103106
-
104-
1.2.2 {all} [+] Added support for long data type (range)
105-
1.2.2 {all} [+] Added simple support (based on String mapping) for UTCTime/GeneralizedTime
106-
1.2.2 {all} [+] Added support for Real datatype
107+
1.2.2 {all} [+] Added support for long data type (range)
108+
1.2.2 {all} [+] Added simple support (based on String mapping) for UTCTime/GeneralizedTime
109+
1.2.2 {all} [+] Added support for Real datatype
107110
-
108-
1.2.1 {all} [*] Fixed encoding the anonymous BoxedTypes
109-
1.2.1 {comp} [+] Added constructor definition when generating some BoxedTypes
110-
1.2.1 {lib} [*] Fixed choice in choice encoding
111+
1.2.1 {all} [*] Fixed encoding the anonymous BoxedTypes
112+
1.2.1 {comp} [+] Added constructor definition when generating some BoxedTypes
113+
1.2.1 {lib} [*] Fixed choice in choice encoding
111114
-
112-
1.2.0b {comp} [*] Unable to generate source files for some ASN.1 defines (Thanks for report to Turgay Zengin)
115+
1.2.0b {comp} [*] Unable to generate source files for some ASN.1 defines (Thanks for report to Turgay Zengin)
113116
1.2.0b {all} [+] Added support for UTF8String
114-
1.2.0b {all} [+] Added support for SizeConstraint
115-
1.2.0b {all} [+] Added support for BitString
116-
1.2.0b {lib} [*] Fixed bug in BitStream when decoding buffer (only for .NET)
117-
1.2.0b {lib} [+] Added support for DER encoding (experimental)
118-
1.2.0b {all} [+] Added support for Set/SetOf element types
117+
1.2.0b {all} [+] Added support for SizeConstraint
118+
1.2.0b {all} [+] Added support for BitString
119+
1.2.0b {lib} [*] Fixed bug in BitStream when decoding buffer (only for .NET)
120+
1.2.0b {lib} [+] Added support for DER encoding (experimental)
121+
1.2.0b {all} [+] Added support for Set/SetOf element types
119122
1.2.0b {lib} [*] Fixed encoding for uncostraint integer (only for Java)
120-
1.2.0b {all} [+] Added support for default definition (has some restriction: don't supported choice/and over boxed definitions)
121-
1.2.0b {comp} [+] Added support for noname choice generation
122-
1.2.0b {comp} [+] Added support for noname sequence generation
123-
1.2.0b {comp} [+] Added support for noname sequence of sequence generation
124-
1.2.0b {lib} [*] Incorrect encoding/decoding with constraints is not allowed now
125-
-
126-
1.1.0b2 {lib} [*] Fixed incorrect BER SequenceOf tag generation
127-
1.1.0b2 {lib} [*] Fixed incorrect BER/PER encoding/decoding for a negative integer
128-
1.1.0b2 {comp} [*] Fixed generation bug for the value range constraint with negative integer
129-
1.1.0b2 {lib} [*] Fixed memory corruption bug for packets > 1Kb (Thanks to John Finley)
130-
-
131-
1.1.0b {lib} [*] Fixed the bug for optional field encoding for unset variables (only for C#/.NET)
132-
1.1.0b {comp} [*] Removed unnecessary variable (_ispresent) for C#
133-
1.1.0b {doc} [+] Added a small API documentation
134-
1.1.0b {comp} [*] Fixed the sequence of element type annotation generating
135-
1.1.0b {lib} [*] Fixed the bug when decoding length (thanks to John Finley)
136-
1.1.0b {lib} [!] Fixed the bug when encoding/decoding for SequenceOf element
137-
1.1.0b {comp} [*] Fixed incorrect the ASN1String type that generates by BNCompiler for boxed types
138-
1.1.0b {comp} [*] Fixed incorrect URL location to BinaryNotes site for all generating files
139-
1.1.0b {comp/lib} [+] The PER encoding is supported now
140-
1.1.0b {lib} [*] Unit tests is refactored for use with another encodings
141-
1.1.0b {all} [*] Fixed the version information & distribution package
142-
-
143-
1.0.0b {all} [+] The first public release.
123+
1.2.0b {all} [+] Added support for default definition (has some restriction: don't supported choice/and over boxed definitions)
124+
1.2.0b {comp} [+] Added support for noname choice generation
125+
1.2.0b {comp} [+] Added support for noname sequence generation
126+
1.2.0b {comp} [+] Added support for noname sequence of sequence generation
127+
1.2.0b {lib} [*] Incorrect encoding/decoding with constraints is not allowed now
128+
-
129+
1.1.0b2 {lib} [*] Fixed incorrect BER SequenceOf tag generation
130+
1.1.0b2 {lib} [*] Fixed incorrect BER/PER encoding/decoding for a negative integer
131+
1.1.0b2 {comp} [*] Fixed generation bug for the value range constraint with negative integer
132+
1.1.0b2 {lib} [*] Fixed memory corruption bug for packets > 1Kb (Thanks to John Finley)
133+
-
134+
1.1.0b {lib} [*] Fixed the bug for optional field encoding for unset variables (only for C#/.NET)
135+
1.1.0b {comp} [*] Removed unnecessary variable (_ispresent) for C#
136+
1.1.0b {doc} [+] Added a small API documentation
137+
1.1.0b {comp} [*] Fixed the sequence of element type annotation generating
138+
1.1.0b {lib} [*] Fixed the bug when decoding length (thanks to John Finley)
139+
1.1.0b {lib} [!] Fixed the bug when encoding/decoding for SequenceOf element
140+
1.1.0b {comp} [*] Fixed incorrect the ASN1String type that generates by BNCompiler for boxed types
141+
1.1.0b {comp} [*] Fixed incorrect URL location to BinaryNotes site for all generating files
142+
1.1.0b {comp/lib} [+] The PER encoding is supported now
143+
1.1.0b {lib} [*] Unit tests is refactored for use with another encodings
144+
1.1.0b {all} [*] Fixed the version information & distribution package
145+
-
146+
1.0.0b {all} [+] The first public release.

Dist/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>cz.drasil</groupId>
88
<artifactId>binarynotes-parent</artifactId>
9-
<version>1.5.5</version>
9+
<version>1.6</version>
1010
<relativePath>..</relativePath>
1111
</parent>
1212

0 commit comments

Comments
 (0)