Skip to content

Commit

Permalink
chore(version): releasing v1.1
Browse files Browse the repository at this point in the history
feat(metadata): added array metadata items
chore(version): incremented to v1.1
  • Loading branch information
charlie430 authored and GitHub Enterprise committed Feb 12, 2020
1 parent 29b4ddc commit 7945323
Show file tree
Hide file tree
Showing 8 changed files with 443 additions and 19 deletions.
2 changes: 1 addition & 1 deletion dotnet/Schema/Schema.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Authors>FactSet Research Systems, Inc.</Authors>
<Company>FactSet Research Systems, Inc</Company>
<Product>FactSet.Protobuf.Stach</Product>
<Version>1.0.1</Version>
<Version>1.1.0</Version>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/factset/stachschema.git</RepositoryUrl>
<PackageTags>STACH;Protobuf;FactSet;FDS;Analytics;Analytics API</PackageTags>
Expand Down
343 changes: 334 additions & 9 deletions dotnet/Schema/fds/protobuf/stach/MetadataItem.g.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.factset.protobuf</groupId>
<artifactId>stach</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>

<properties>
<version.protobuf>3.5.1</version.protobuf>
Expand Down
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fds/protobuf-stach",
"version": "1.0.0",
"version": "1.1.0",
"description": "Protobuf generated javascript files for STACH",
"main": "index.js",
"types": "index.d.ts",
Expand Down
10 changes: 10 additions & 0 deletions proto/fds/protobuf/stach/MetadataItem.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import "google/protobuf/duration.proto";
import "google/protobuf/timestamp.proto";

import "fds/protobuf/stach/table/Reference.proto";
import "fds/protobuf/stach/table/Wrappers.proto";

message MetadataItem {
reserved 104, 105, 200;
Expand All @@ -24,6 +25,15 @@ message MetadataItem {
string string_value = 107;
google.protobuf.Duration duration_value = 108;
google.protobuf.Timestamp timestamp_value = 109;

factset.protobuf.stach.table.DoubleArray double_array = 150;
factset.protobuf.stach.table.FloatArray float_array = 151;
factset.protobuf.stach.table.Int32Array int32_array = 152;
factset.protobuf.stach.table.Int64Array int64_array = 153;
factset.protobuf.stach.table.BoolArray bool_array = 156;
factset.protobuf.stach.table.StringArray string_array = 157;
factset.protobuf.stach.table.DurationArray duration_array = 158;
factset.protobuf.stach.table.TimestampArray timestamp_array = 159;

factset.protobuf.stach.table.Reference ref_value = 201;
}
Expand Down
99 changes: 94 additions & 5 deletions python/fds.protobuf.stach/fds/protobuf/stach/MetadataItem_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion python/fds.protobuf.stach/setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

setup(name='fds.protobuf.stach',
version='1.0.0',
version='1.1.0',
description='Stach library in python',
url='',
author='analytics-reporting',
Expand Down
2 changes: 1 addition & 1 deletion r/factset.protobuf.stach/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: factset.protobuf.stach
Type: Package
Title: 'FactSet' 'STACH' Library
Version: 1.0.2
Version: 1.1.0
Author: analytics-reporting
Maintainer: Charlie Mathis<chmathis@factset.com>
Description: Generates 'RProtobuf' classes for 'FactSet' 'STACH' tabular
Expand Down

0 comments on commit 7945323

Please sign in to comment.