Skip to content

Commit

Permalink
Release. Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor-Losev committed Dec 5, 2023
1 parent 11e524e commit 3a531f1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@barchart/portfolio-api-common",
"version": "1.29.0",
"version": "1.29.1",
"description": "Common JavaScript code used by Barchart's Portfolio Service",
"author": {
"name": "Bryan Ingle",
Expand Down
18 changes: 11 additions & 7 deletions test/SpecRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -7027,10 +7027,10 @@ module.exports = (() => {
}

/**
* Given a code, returns the enumeration item.
* Converts a JSON-serialized object into an {@link AdHoc} instance.
*
* @public
* @param {String} code
* @param {String} serialized
* @returns {AdHoc}
*/
static parse(serialized) {
Expand Down Expand Up @@ -7754,8 +7754,8 @@ module.exports = (() => {
}

/**
* Returns a new {@link Decimal} instance with a value that returns
* the remainder of dividing by the value supplied.
* Returns a new {@link Decimal} instance with of the remainder when
* dividing the current instance by the value supplied.
*
* @public
* @param {Decimal|Number|String} other
Expand Down Expand Up @@ -10165,6 +10165,9 @@ module.exports = (() => {
* @public
* @param {String} description
* @param {Function=} enumerationType
* @param {Function=} reviver
* @param {Function=} validator
* @param {Function=} builder
*/
class DataType {
constructor(description, enumerationType, reviver, validator, builder) {
Expand Down Expand Up @@ -10355,7 +10358,8 @@ module.exports = (() => {
}

/**
* References a {@link Timestamp} instance.
* References an object whose internal properties are not important (for
* serialization and deserialization purposes).
*
* @public
* @static
Expand Down Expand Up @@ -10498,8 +10502,8 @@ module.exports = (() => {
*
* @public
* @param {String} name - The name of the schema
* @param {Array<Field>} fields
* @param {Array<Component>} components
* @param {Field[]} fields
* @param {Component[]} components
* @param {Boolean=} strict
*/
class Schema {
Expand Down

0 comments on commit 3a531f1

Please sign in to comment.