Skip to content

Commit 96c6a3c

Browse files
authored
Merge pull request #106 from epam/release
Release
2 parents 6fb4588 + 78c22a0 commit 96c6a3c

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
retention-days: 7
6868
- uses: actions/upload-artifact@v4
6969
with:
70-
name: native-sources
70+
name: native-sources-tar-gz
7171
path: |
7272
./native-sources.tar.gz
7373
retention-days: 7

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ DFP uses Java long to represent base-10 floating point numbers. DFP is based on
1919

2020
Add dependency (Gradle):
2121
```
22-
implementation 'com.epam.deltix:dfp:1.0.3'
22+
implementation 'com.epam.deltix:dfp:1.0.5'
2323
```
2424
Use:
2525
```

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=1.0.4-SNAPSHOT
1+
version=1.0.6-SNAPSHOT
22
valueTypesVersion=0.9.7

java/dfp-math/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ task copyNativeDfpMathResources(type: Copy, dependsOn: copyNativeDfpMathResource
5454
exclude 'linux/musl-gcc/**'
5555
}
5656
processResources.dependsOn(copyNativeDfpMathResources)
57+
sourcesJar.dependsOn(copyNativeDfpMathResources)
5758

5859
def rUser = findProperty('SONATYPE_NEXUS_USERNAME') ?: System.getenv('SONATYPE_NEXUS_USERNAME') ?: "FakeUser"
5960
def rPass = findProperty('SONATYPE_NEXUS_PASSWORD') ?: System.getenv('SONATYPE_NEXUS_PASSWORD') ?: "FakePass"

0 commit comments

Comments
 (0)