OLD | NEW |
1 =============================================================================== | 1 =============================================================================== |
2 Welcome to the C# port of Google Protocol Buffers, written by Jon Skeet | 2 Welcome to the C# port of Google Protocol Buffers, written by Jon Skeet |
3 (skeet@pobox.com) based on the work of many talented people. | 3 (skeet@pobox.com) based on the work of many talented people. |
4 | 4 |
5 =============================================================================== | 5 =============================================================================== |
6 RELEASE NOTES - Code imported into Google's main protobuf repository | 6 RELEASE NOTES - Code imported into Google's main protobuf repository |
7 =============================================================================== | 7 =============================================================================== |
8 | 8 |
9 Everything below note this represents history of protobuf-csharp-port project | 9 Everything below note this represents history of protobuf-csharp-port project |
10 before the code was merged into csharp/ subtree of GitHub google/protobuf | 10 before the code was merged into csharp/ subtree of GitHub google/protobuf |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 - Added the LITE framework (Google.ProtoBuffersLite.dll) and the ability to | 121 - Added the LITE framework (Google.ProtoBuffersLite.dll) and the ability to |
122 generate code with "option optimize_for = LITE_RUNTIME;". | 122 generate code with "option optimize_for = LITE_RUNTIME;". |
123 - Added ability to invoke protoc.exe from within ProtoGen.exe. | 123 - Added ability to invoke protoc.exe from within ProtoGen.exe. |
124 - Upgraded to protoc.exe (2.3) compiler. | 124 - Upgraded to protoc.exe (2.3) compiler. |
125 | 125 |
126 Fixes: | 126 Fixes: |
127 - Issue 9: Class cannot be static and sealed error | 127 - Issue 9: Class cannot be static and sealed error |
128 - Issue 12: default value for enumerate fields must be filled out | 128 - Issue 12: default value for enumerate fields must be filled out |
129 | 129 |
130 Other: | 130 Other: |
131 - Rewrite of build using MSBbuild instead of NAnt | 131 - Rewrite of build using MSbuild instead of NAnt |
132 - Moved to NUnit Version 2.2.8.0 | 132 - Moved to NUnit Version 2.2.8.0 |
133 - Changed to using secure .snk for releases | 133 - Changed to using secure .snk for releases |
134 | 134 |
135 =============================================================================== | 135 =============================================================================== |
136 RELEASE NOTES - Version 0.9.1 | 136 RELEASE NOTES - Version 0.9.1 |
137 =============================================================================== | 137 =============================================================================== |
138 | 138 |
139 Fixes: | 139 Fixes: |
140 - issue 10: Incorrect encoding of packed fields when serialized | 140 - issue 10: Incorrect encoding of packed fields when serialized |
141 | 141 |
142 =============================================================================== | 142 =============================================================================== |
143 RELEASE NOTES - Version 0.9.0 | 143 RELEASE NOTES - Version 0.9.0 |
144 =============================================================================== | 144 =============================================================================== |
145 | 145 |
146 - Initial release | 146 - Initial release |
147 | 147 |
148 =============================================================================== | 148 =============================================================================== |
OLD | NEW |