Skip to content

Commit 195412e

Browse files
committed
Release 3.4.2
1 parent bf10d75 commit 195412e

File tree

3 files changed

+10
-27
lines changed

3 files changed

+10
-27
lines changed

README.md

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -18,30 +18,6 @@ OData2Poco is available in three flavers:
1818
|AppVeyor |Windows |[![Build status](https://ci.appveyor.com/api/projects/status/sjaqqu70ex31n8se?svg=true)](https://ci.appveyor.com/project/moh-hassan/odata2poco)|
1919
|Travis |Linux / OS X |[![Build Status](https://travis-ci.org/moh-hassan/odata2poco.svg?branch=master)](https://travis-ci.org/moh-hassan/odata2poco)|
2020

21-
### OData2Poco V3.3.1 is Released on Nov 25, 2019
22-
23-
## What is new in V3.3.1
24-
- Fix Issue [#28](https://github.com/moh-hassan/odata2poco/issues/28#issuecomment-557015613): Apply change-case on Navigation Properties.
25-
26-
27-
## What is new in V3.3.0
28-
- Filter model using the option [--include](https://github.com/moh-hassan/odata2poco/wiki/CommandLine-Reference#--include)
29-
- Change case of Classes to Camel/Pas using the option --entity-case
30-
- Generated ReadOnly Properties if the vocabulary of the metadata include:Computed or Permissions:Read.
31-
- Removing Vb conversion external service.
32-
33-
34-
Try the new feature by the command
35-
```
36-
o2pgen -r http://services.odata.org/V4/TripPinServiceRW -v --include air* --entity-case camel
37-
```
38-
39-
***The new version 3.3.1 can be downloaded from Nuget:***
40-
41-
- [Console (o2pgen)](https://www.nuget.org/packages/OData2Poco.CommandLine/3.3.1)
42-
- [Netcore Global tool (dotnet-o2pgen)](https://www.nuget.org/packages/OData2Poco.dotnet.o2pgen)
43-
- [Class libraryl](https://www.nuget.org/packages/OData2Poco/3.3.1)
44-
4521

4622
**Features of OData2Poco**
4723

@@ -80,7 +56,7 @@ o2pgen -r http://services.odata.org/V4/TripPinServiceRW -v --include air* --enti
8056
- Define namespace to overwrite the namespace of the model.
8157

8258
- Add primary key/mandatory comments to the properties of the class.
83-
- Rename class/properties that have a name match a c# reserved keyword. .
59+
- Rename class/properties that have a name match a c# reserved keyword.
8460
- Save metadata and generated code to a user defined file name.
8561
- Support colored console windows /linux /OS fx.
8662
- Support Microsoft.OData.Edm library version 7.5+ (OData v4).

ReleaseNotes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

55
## (Console: o2pgen / .Net Core: dotnet-o2pgen)
66

7+
## Version 3.4.2
8+
**Release Date:** Dec 21, 2020
9+
10+
**What is new in 3.4.2:**
11+
- Allow EDM types to be nullable by @LarsBauer, PR [#33](https://github.com/moh-hassan/odata2poco/pull/33), fix issue [#32](https://github.com/moh-hassan/odata2poco/issues/32)
12+
713
## Version 3.4.1
814
**Release Date:** Oct 3, 2020
915

appveyor.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#nuget version is nly changed by RELEASE TAG
2-
version: 3.4.0-ci-{build}
2+
version: 3.4.2-ci-{build}
33
image: Visual Studio 2019
44
pull_requests:
55
do_not_increment_build_number: false
@@ -14,7 +14,8 @@ init:
1414
if($ver.StartsWith("v") -eq $true) { $ver = $ver.Substring(1) }
1515
try
1616
{
17-
Update-AppveyorBuild -Version $ver
17+
Update-AppveyorBuild -Version $ver
18+
Write-Output "Update-AppveyorBuild Success to change version to TAG: '$env:APPVEYOR_REPO_TAG_NAME'" -ForegroundColor Green
1819
}
1920
catch
2021
{

0 commit comments

Comments
 (0)