Skip to content

Commit b905682

Browse files
authored
chore: increase version for release 2.1.1 (#705)
* chore: increase version for release 2.1.1 * chore: increase version * chore: increase version * Update README.md
1 parent 1e94a31 commit b905682

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Please refer to the [contributing guide](CONTRIBUTING.md).
139139

140140
## Copyright
141141

142-
Copyright 2024 FactSet Research Systems Inc
142+
Copyright 2025 FactSet Research Systems Inc
143143

144144
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
145145

__tests__/openIDClientFactory.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ describe('Test OpenIDClientFactory class', () => {
4848

4949
test('should not throw an error and set proxy properly', async () => {
5050
const proxyUrl = 'http://proxy.example.com:8080';
51-
const userAgent = `fds-sdk/javascript/utils/2.1.0 (${process.platform}; node ${process.version})`;
51+
const userAgent = `fds-sdk/javascript/utils/2.1.1 (${process.platform}; node ${process.version})`;
5252

5353
jest.mocked(Issuer.discover).mockResolvedValue({
5454
metadata: {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@factset/sdk-utils",
33
"description": "Utilities for interacting with FactSet APIs.",
4-
"version": "2.1.0",
4+
"version": "2.1.1",
55
"homepage": "https://developer.factset.com",
66
"repository": "FactSet/enterprise-sdk-utils-typescript.git",
77
"main": "lib/index.js",

src/openIDClientFactory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class OpenIDClientFactory {
1616
custom.setHttpOptionsDefaults({
1717
agent: proxyAgent,
1818
headers: {
19-
'user-agent': `fds-sdk/javascript/utils/2.1.0 (${process.platform}; node ${process.version})`,
19+
'user-agent': `fds-sdk/javascript/utils/2.1.1 (${process.platform}; node ${process.version})`,
2020
},
2121
});
2222
}

0 commit comments

Comments
 (0)