Skip to content

Commit af7f445

Browse files
author
Teja Surisetty
committed
Updated config
1 parent 1f34597 commit af7f445

File tree

7 files changed

+15
-22
lines changed

7 files changed

+15
-22
lines changed

.speakeasy/gen.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ management:
55
docVersion: 1.0.0
66
speakeasyVersion: 1.448.2
77
generationVersion: 2.467.4
8-
releaseVersion: 0.2.5
9-
configChecksum: 8e8f888dff09aeae0a69e9c2ee19e576
8+
releaseVersion: 0.2.6
9+
configChecksum: eb4f32fbb806e5e85694ec38d2d1065a
1010
repoURL: https://github.com/Benzinga/bz-java-client.git
1111
published: true
1212
features:

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ generation:
1313
oAuth2ClientCredentialsEnabled: false
1414
oAuth2PasswordEnabled: false
1515
java:
16-
version: 0.2.5
16+
version: 0.2.6
1717
additionalDependencies: []
1818
additionalPlugins: []
1919
artifactID: BZClient

.speakeasy/workflow.lock

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
11
speakeasyVersion: 1.448.2
2-
sources:
3-
BZ_APIs:
4-
sourceNamespace: benzinga-ap-is
5-
sourceRevisionDigest: sha256:1feb94a2ed74d83d2098884fd22b9717f7f124f445d6779143b5e109c1b3b324
6-
sourceBlobDigest: sha256:f5369373dad25b962819006ee495ebe982ec9d00b3934a0d15cdb7d060b829a7
7-
tags:
8-
- latest
9-
- 1.0.0
2+
sources: {}
103
targets:
114
bzclient:
125
source: BZ_APIs
13-
codeSamplesNamespace: benzinga-ap-is-java-code-samples
14-
codeSamplesRevisionDigest: sha256:c7d627623805b223fc0751b47ff2b4929506ae3234004beb21f18493dabee5c8
6+
codeSamplesNamespace: bz-java-client-code-samples
7+
codeSamplesRevisionDigest: sha256:7cd3cf7a12b2c66a2fd247d1401cf14f9b3fafa358e2422f46e2c78492a3782c
158
workflow:
169
workflowVersion: 1.0.0
1710
speakeasyVersion: latest
@@ -23,7 +16,7 @@ workflow:
2316
- location: .speakeasy/speakeasy-modifications-overlay.yaml
2417
output: mintlify-docs
2518
registry:
26-
location: registry.speakeasyapi.dev/benzinga/benzinga/benzinga-ap-is
19+
location: registry.speakeasyapi.dev/benzinga/benzinga/bz-java-client
2720
targets:
2821
bzclient:
2922
target: java
@@ -36,5 +29,5 @@ workflow:
3629
gpgPassPhrase: $java_gpg_passphrase
3730
codeSamples:
3831
registry:
39-
location: registry.speakeasyapi.dev/benzinga/benzinga/benzinga-ap-is-java-code-samples
32+
location: registry.speakeasyapi.dev/benzinga/benzinga/bz-java-client-code-samples
4033
blocking: false

.speakeasy/workflow.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sources:
88
- location: .speakeasy/speakeasy-modifications-overlay.yaml
99
output: mintlify-docs
1010
registry:
11-
location: registry.speakeasyapi.dev/benzinga/benzinga/benzinga-ap-is
11+
location: registry.speakeasyapi.dev/benzinga/benzinga/bz-java-client
1212
targets:
1313
bzclient:
1414
target: java
@@ -21,5 +21,5 @@ targets:
2121
gpgPassPhrase: $java_gpg_passphrase
2222
codeSamples:
2323
registry:
24-
location: registry.speakeasyapi.dev/benzinga/benzinga/benzinga-ap-is-java-code-samples
24+
location: registry.speakeasyapi.dev/benzinga/benzinga/bz-java-client-code-samples
2525
blocking: false

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ The samples below show how a published SDK artifact is used:
4848

4949
Gradle:
5050
```groovy
51-
implementation 'org.benzinga:BZClient:0.2.5'
51+
implementation 'org.benzinga:BZClient:0.2.6'
5252
```
5353

5454
Maven:
5555
```xml
5656
<dependency>
5757
<groupId>org.benzinga</groupId>
5858
<artifactId>BZClient</artifactId>
59-
<version>0.2.5</version>
59+
<version>0.2.6</version>
6060
</dependency>
6161
```
6262

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ tasks.withType(Javadoc) {
6363
}
6464

6565
group = "org.benzinga"
66-
version = "0.2.5"
66+
version = "0.2.6"
6767

6868
sourcesJar {
6969
archiveBaseName = "BZClient"
@@ -101,7 +101,7 @@ publishing {
101101
maven(MavenPublication) {
102102
groupId = 'org.benzinga'
103103
artifactId = 'BZClient'
104-
version = '0.2.5'
104+
version = '0.2.6'
105105

106106
from components.java
107107

src/main/java/org/benzinga/BZClient/SDKConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public Optional<SecuritySource> securitySource() {
2121
public int serverIdx = 0;
2222
private static final String LANGUAGE = "java";
2323
public static final String OPENAPI_DOC_VERSION = "1.0.0";
24-
public static final String SDK_VERSION = "0.2.5";
24+
public static final String SDK_VERSION = "0.2.6";
2525
public static final String GEN_VERSION = "2.467.4";
2626
private static final String BASE_PACKAGE = "org.benzinga.BZClient";
2727
public static final String USER_AGENT =

0 commit comments

Comments
 (0)