Skip to content

Commit

Permalink
Merge branch 'master' into pubmaster
Browse files Browse the repository at this point in the history
  • Loading branch information
aloneguid committed Feb 23, 2021
2 parents 9dda79f + 46736c5 commit d452176
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 22 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@

> Parquet.Net is developed *mostly by myself*, and although I'm trying to invest some time in this project, it's not always possible to cut out time from my daily job or evenings. If you feel you'd like to sponsor this project, please click the `Sponsor` button above and choose one of the available options.💰
| Build | Test |
|------------|----------------|
|![Azure DevOps builds (branch)](https://img.shields.io/azure-devops/build/aloneguid/4bab84c0-90f7-4425-afc6-ba077aa9757e/67/master?label=master)|![Azure DevOps tests (branch)](https://img.shields.io/azure-devops/tests/aloneguid/AllPublic/67/master?label=master%20%28Linux%29)<br>![Azure DevOps tests (branch)](https://img.shields.io/azure-devops/tests/aloneguid/AllPublic/67/master?label=master%20%28Windows%29)<br>![Azure DevOps tests (branch)](https://img.shields.io/azure-devops/tests/aloneguid/AllPublic/67/master?label=master%20%28MacOSX%29)|

**Fully managed** .NET library to read and write [Apache Parquet](https://parquet.apache.org/) files. Supports:

- `.NET 4.5` and up.
Expand Down
21 changes: 4 additions & 17 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@ pr:
- doc/**/*

variables:
- group: 'External Resources'
- name: vmImage
value: 'ubuntu-latest' # see https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops&tabs=yaml&viewFallbackFrom=vsts
- name: v
value: 3.8.3
value: 3.8.5
- name: av
value: 3.0.0

Expand Down Expand Up @@ -116,19 +115,7 @@ stages:
- task: NuGetCommand@2
displayName: nuget.org
inputs:
command: push
command: 'push'
packagesToPush: '$(System.ArtifactsDirectory)/nuget/*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget.org (aloneguid)'
- task: GitHubRelease@1
inputs:
gitHubConnection: 'aloneguid'
repositoryName: 'aloneguid/parquet-dotnet'
action: 'create'
target: '$(Build.SourceVersion)'
tagSource: 'userSpecifiedTag'
tag: '$(Build.BuildNumber)'
changeLogCompareToRelease: 'lastFullRelease'
changeLogType: 'issueBased'
changeLogLabels: '[{ "label" : "enhancement", "displayName" : "Enhancements", "state" : "closed" }, { "label" : "bug", "displayName" : "Bugs", "state" : "closed" }]'

nuGetFeedType: 'external'
publishFeedCredentials: 'nuget.org'
2 changes: 1 addition & 1 deletion src/Parquet/File/ThriftFooter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public Thrift.FileMetaData CreateThriftSchema(Schema schema)

private Thrift.SchemaElement AddRoot(IList<Thrift.SchemaElement> container)
{
var root = new Thrift.SchemaElement("parquet-dotnet-schema");
var root = new Thrift.SchemaElement("root");
container.Add(root);
return root;
}
Expand Down

0 comments on commit d452176

Please sign in to comment.