From a39eed6f74f99864bccf6e1fcda875e314ef1920 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sun, 28 Jul 2024 13:09:08 +0000 Subject: [PATCH] Release v0.2.2 --- .gitattributes | 29 ++++- .github/workflows/productionize.yml | 23 ++-- .github/workflows/publish.yml | 11 +- .github/workflows/test.yml | 1 - .github/workflows/test_bundles.yml | 3 - .github/workflows/test_coverage.yml | 1 - .github/workflows/test_install.yml | 1 - .npmrc | 4 +- CHANGELOG.md | 186 +++++++++++++++++++++++++++- CONTRIBUTORS | 12 +- README.md | 4 +- package.json | 16 +-- test/fixtures/julia/data.json | 2 +- test/fixtures/julia/runner.jl | 1 + 14 files changed, 250 insertions(+), 44 deletions(-) diff --git a/.gitattributes b/.gitattributes index 10a16e6..1c88e69 100644 --- a/.gitattributes +++ b/.gitattributes @@ -40,10 +40,27 @@ *.mov binary # Override what is considered "vendored" by GitHub's linguist: -/deps/** linguist-vendored=false -/lib/node_modules/** linguist-vendored=false linguist-generated=false -test/fixtures/** linguist-vendored=false -tools/** linguist-vendored=false +/lib/node_modules/** -linguist-vendored -linguist-generated -# Override what is considered "documentation" by GitHub's linguist: -examples/** linguist-documentation=false +# Configure directories which should *not* be included in GitHub language statistics: +/deps/** linguist-vendored +/dist/** linguist-generated +/workshops/** linguist-vendored + +benchmark/** linguist-vendored +docs/* linguist-documentation +etc/** linguist-vendored +examples/** linguist-documentation +scripts/** linguist-vendored +test/** linguist-vendored +tools/** linguist-vendored + +# Configure files which should *not* be included in GitHub language statistics: +Makefile linguist-vendored +*.mk linguist-vendored +*.jl linguist-vendored +*.py linguist-vendored +*.R linguist-vendored + +# Configure files which should be included in GitHub language statistics: +docs/types/*.d.ts -linguist-documentation diff --git a/.github/workflows/productionize.yml b/.github/workflows/productionize.yml index ec90164..f4575e9 100644 --- a/.github/workflows/productionize.yml +++ b/.github/workflows/productionize.yml @@ -94,8 +94,8 @@ jobs: node -e "var pkg = require( './package.json' ); pkg.dependencies[ '@stdlib/error-tools-fmtprodmsg' ] = '^$PKG_VERSION'; require( 'fs' ).writeFileSync( 'package.json', JSON.stringify( pkg, null, 2 ) );" fi - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' run: | git config --local user.email "noreply@stdlib.io" git config --local user.name "stdlib-bot" @@ -191,8 +191,8 @@ jobs: # Pin action to full length commit SHA uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' run: | git config --local user.email "noreply@stdlib.io" git config --local user.name "stdlib-bot" @@ -344,7 +344,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() @@ -367,8 +366,8 @@ jobs: # Pin action to full length commit SHA uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' run: | git config --local user.email "noreply@stdlib.io" git config --local user.name "stdlib-bot" @@ -518,7 +517,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() @@ -541,8 +539,8 @@ jobs: # Pin action to full length commit SHA uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' run: | git config --local user.email "noreply@stdlib.io" git config --local user.name "stdlib-bot" @@ -698,7 +696,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() @@ -738,8 +735,8 @@ jobs: echo "bump=true" >> $GITHUB_OUTPUT fi - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' if: steps.check-if-bump.outputs.bump run: | git config --local user.email "noreply@stdlib.io" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3eec50e..2888b88 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -72,8 +72,8 @@ jobs: node-version: 20 timeout-minutes: 5 - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' run: | git config --local user.email "noreply@stdlib.io" git config --local user.name "stdlib-bot" @@ -94,6 +94,10 @@ jobs: # Replace branch in README.md link definitions for badges with the new version: find . -type f -name '*.md' -print0 | xargs -0 sed -Ei "s/branch([=:])[^ ]+/branch\1v${NEW_VERSION}/g" + # Rewrite CHANGELOG.md to replace "Unreleased" with the new version: + sed -Ei "s/Unreleased/${NEW_VERSION}/g" CHANGELOG.md + sed -Ei "s/unreleased/v${NEW_VERSION}/g" CHANGELOG.md + # Create a new commit and tag: git add package.json README.md git commit -m "Release v${NEW_VERSION}" @@ -202,7 +206,7 @@ jobs: # Publish package to npm: - name: 'Publish package to npm' # Pin action to full length commit SHA - uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552 # v3.0.1 + uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1 with: token: ${{ secrets.NPM_TOKEN }} access: public @@ -218,7 +222,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 750d445..697a810 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -95,6 +95,5 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test_bundles.yml b/.github/workflows/test_bundles.yml index 6d77abd..5b5879a 100644 --- a/.github/workflows/test_bundles.yml +++ b/.github/workflows/test_bundles.yml @@ -94,7 +94,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() @@ -139,7 +138,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() @@ -184,6 +182,5 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index f4eda1e..2bcf0cd 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -119,7 +119,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index c3a2823..1d8a76c 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -81,6 +81,5 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.npmrc b/.npmrc index 5af9067..58dbd10 100644 --- a/.npmrc +++ b/.npmrc @@ -27,5 +27,5 @@ shrinkwrap = false # Disable automatically "saving" dependencies on install: save = false -# Generate provenance metadata: -provenance = true +# Do not generate provenance metadata: +provenance = false diff --git a/CHANGELOG.md b/CHANGELOG.md index c025819..74068e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,4 +2,188 @@ > Package changelog. -See [GitHub Releases](https://github.com/stdlib-js/stats-base-dists-frechet-mode/releases) for the changelog. \ No newline at end of file +
+ +## 0.2.2 (2024-07-28) + +
+ +### Commits + +
+ +- [`41d41e9`](https://github.com/stdlib-js/stdlib/commit/41d41e959b4eaad3c631e6898e3144a4015a5458) - **test:** include trailing newlines in Julia-generated JSON fixtures _(by Philipp Burckhardt)_ +- [`9ed7d0e`](https://github.com/stdlib-js/stdlib/commit/9ed7d0e7d57edb5ad0dfb65c944bed87d475cbf3) - **chore:** add missing trailing newlines _(by Philipp Burckhardt)_ + +
+ +
+ + + +
+ +### Contributors + +A total of 1 person contributed to this release. Thank you to this contributor: + +- Philipp Burckhardt + +
+ + + +
+ + + +
+ +## 0.2.1 (2024-02-24) + +No changes reported for this release. + +
+ + + +
+ +## 0.2.0 (2024-02-14) + +No changes reported for this release. + +
+ + + +
+ +## 0.1.0 (2023-09-24) + +
+ +### Features + +- [`81ca3ab`](https://github.com/stdlib-js/stdlib/commit/81ca3ab33585150e98a402b3e6d57beb1ec36864) - update minimum TypeScript version + +
+ + + +
+ +### BREAKING CHANGES + +- [`81ca3ab`](https://github.com/stdlib-js/stdlib/commit/81ca3ab33585150e98a402b3e6d57beb1ec36864): update minimum TypeScript version +- [`81ca3ab`](https://github.com/stdlib-js/stdlib/commit/81ca3ab33585150e98a402b3e6d57beb1ec36864): update minimum TypeScript version to 4.1 + + - To migrate, users should upgrade their TypeScript version to at least version 4.1. + +
+ + + +
+ +### Commits + +
+ +- [`81ca3ab`](https://github.com/stdlib-js/stdlib/commit/81ca3ab33585150e98a402b3e6d57beb1ec36864) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_ +- [`d5fa8e8`](https://github.com/stdlib-js/stdlib/commit/d5fa8e8a6267a837a25a7027e9fe3e847bc2d1c5) - **test:** use strictEqual checks _(by Philipp Burckhardt)_ +- [`ce7e336`](https://github.com/stdlib-js/stdlib/commit/ce7e3367c0f9477773fe76dd0eca64dc6ad33c02) - **docs:** update equations _(by Philipp Burckhardt)_ +- [`37f032d`](https://github.com/stdlib-js/stdlib/commit/37f032d4a571f667ea99f6f52f60b5d736c627f3) - **docs:** render equations via math code blocks _(by Philipp Burckhardt)_ + +
+ +
+ + + +
+ +### Contributors + +A total of 1 person contributed to this release. Thank you to this contributor: + +- Philipp Burckhardt + +
+ + + +
+ + + +
+ +## 0.0.7 (2022-07-08) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.6 (2022-02-16) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.5 (2021-08-22) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.4 (2021-07-07) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.3 (2021-06-27) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.2 (2021-06-16) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.1 (2021-06-15) + +No changes reported for this release. + +
+ + + diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 4500383..26a1c46 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -5,6 +5,7 @@ Adarsh Palaskar Aditya Sapra AgPriyanshu18 <113460573+AgPriyanshu18@users.noreply.github.com> +Aleksandr <112382387+alextes90@users.noreply.github.com> Ali Salesi Aman Bhansali Amit Jimiwal @@ -18,6 +19,7 @@ Chinmay Joshi <86140365+JawHawk@users.noreply.github.com> Christopher Dambamuromo Dan Rose Daniel Killenberger +Daniel Yu <40680511+Daniel777y@users.noreply.github.com> Dominik Moritz Dorrin Sotoudeh EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com> @@ -25,6 +27,7 @@ Frank Kovacs Golden Kumar <103646877+AuenKr@users.noreply.github.com> Gunj Joshi Harshita Kalani +Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com> Jaimin Godhani <112328542+Jai0401@users.noreply.github.com> James Gelok Jaysukh Makvana @@ -48,6 +51,7 @@ Muhammad Haris Naresh Jagadeesan NightKnight Nithin Katta <88046362+nithinkatta@users.noreply.github.com> +Nourhan Hasan <109472010+TheNourhan@users.noreply.github.com> Ognjen Jevremović Oneday12323 <107678750+Oneday12323@users.noreply.github.com> Philipp Burckhardt @@ -60,6 +64,7 @@ Pushpendra Chandravanshi Raunak Kumar Gupta Rejoan Sardar <119718513+Rejoan-Sardar@users.noreply.github.com> Ricky Reusser +Ridam Garg <67867319+RidamGarg@users.noreply.github.com> Robert Gislason Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com> Rutam <138517416+performant23@users.noreply.github.com> @@ -69,8 +74,11 @@ Seyyed Parsa Neshaei Shashank Shekhar Singh Shivam <11shivam00@gmail.com> Shraddheya Shendre +Shubh Mehta <93862397+Shubh942@users.noreply.github.com> Shubham Mishra -Snehil Shah <130062020+Snehil-Shah@users.noreply.github.com> +Sivam Das <100067002+Sivam2313@users.noreply.github.com> +Snehil Shah +Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com> Spandan Barve Stephannie Jiménez Gacha Suraj kumar <125961509+kumarsuraj212003@users.noreply.github.com> @@ -79,8 +87,10 @@ Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com> Utkarsh Utkarsh Raj Varad Gupta +Xiaochuan Ye Yernar Yergaziyev naveen nishant-s7 <97207366+nishant-s7@users.noreply.github.com> orimiles5 <97595296+orimiles5@users.noreply.github.com> +rainn <88160429+AmCodesLame@users.noreply.github.com> rei2hu diff --git a/README.md b/README.md index 1303651..5540ee1 100644 --- a/README.md +++ b/README.md @@ -235,8 +235,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors]. [npm-image]: http://img.shields.io/npm/v/@stdlib/stats-base-dists-frechet-mode.svg [npm-url]: https://npmjs.org/package/@stdlib/stats-base-dists-frechet-mode -[test-image]: https://github.com/stdlib-js/stats-base-dists-frechet-mode/actions/workflows/test.yml/badge.svg?branch=main -[test-url]: https://github.com/stdlib-js/stats-base-dists-frechet-mode/actions/workflows/test.yml?query=branch:main +[test-image]: https://github.com/stdlib-js/stats-base-dists-frechet-mode/actions/workflows/test.yml/badge.svg?branch=v0.2.2 +[test-url]: https://github.com/stdlib-js/stats-base-dists-frechet-mode/actions/workflows/test.yml?query=branch:v0.2.2 [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-base-dists-frechet-mode/main.svg [coverage-url]: https://codecov.io/github/stdlib-js/stats-base-dists-frechet-mode?branch=main diff --git a/package.json b/package.json index 43ee75e..f48222c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@stdlib/stats-base-dists-frechet-mode", - "version": "0.2.1", + "version": "0.2.2", "description": "Fréchet distribution mode.", "license": "Apache-2.0", "author": { @@ -37,19 +37,19 @@ "url": "https://github.com/stdlib-js/stdlib/issues" }, "dependencies": { - "@stdlib/math-base-assert-is-nan": "^0.2.1", - "@stdlib/math-base-special-pow": "^0.2.1" + "@stdlib/math-base-assert-is-nan": "^0.2.2", + "@stdlib/math-base-special-pow": "^0.3.0" }, "devDependencies": { - "@stdlib/constants-float64-eps": "^0.2.1", - "@stdlib/constants-float64-ninf": "^0.2.1", - "@stdlib/constants-float64-pinf": "^0.2.1", - "@stdlib/math-base-special-abs": "^0.2.1", + "@stdlib/constants-float64-eps": "^0.2.2", + "@stdlib/constants-float64-ninf": "^0.2.2", + "@stdlib/constants-float64-pinf": "^0.2.2", + "@stdlib/math-base-special-abs": "^0.2.2", "@stdlib/random-base-randu": "^0.2.1", "tape": "git+https://github.com/kgryte/tape.git#fix/globby", "istanbul": "^0.4.1", "tap-min": "git+https://github.com/Planeshifter/tap-min.git", - "@stdlib/bench-harness": "^0.2.1" + "@stdlib/bench-harness": "^0.2.2" }, "engines": { "node": ">=0.10.0", diff --git a/test/fixtures/julia/data.json b/test/fixtures/julia/data.json index c326305..74b21a0 100644 --- a/test/fixtures/julia/data.json +++ b/test/fixtures/julia/data.json @@ -1 +1 @@ -{"expected":[0.04054670886385698,2.9071633864596036,3.430001474308017,0.7019953145573217,3.8440128140692122,0.2736203432090051,4.043401469139862,1.6982855345872792,3.484932247114753,1.6758097675958257,0.16877438168744935,9.42708638335457e-10,0.6043052675066616,3.6353226201616247,2.412961542058587,2.071443475192534,6.192664843881625e-5,1.1535293175284829,2.855609754517253,3.2588201507395316,0.4959938537311381,3.2118711506578386,3.4325185509999065,0.0003653122247025663,0.6544194656463284,1.4881902248359131,4.005268748834892,3.149471583202116,4.634936456861597,7.494516359424419e-12,3.2267863604536307,1.6576551215553479,3.921593498496111,2.01551975131109,3.8251368404599857,2.23334155613784,3.275195774798034,2.860199772523243,3.343760950078749,1.5550145122004475,2.808906807317686,0.48591533757764116,1.366250072798298,1.0144997741038524,3.586398818594326,2.5474738791849325,2.260893564736411,1.5009996620645416,0.16694035543823155,2.6405305693090098,4.276706947081542,0.850843179691973,0.6520716122394071,1.4843631624287872,0.36061725362920616,2.9736977812272882,3.8643114832809227,0.8887882332574705,2.8915131096801128,3.6958145398173583,3.3218944032198503,3.42539186368263,4.2765479029964215,3.238970505190219,2.3496385774346633,4.440110108408597,3.059357762724506,0.6861953147949772,2.1940706392625384,0.13872402932784733,3.6507567446022273,3.749678720660594,0.6526648294321498,0.06604296548414254,0.8018293289769615,2.1313082718558674,4.042887226255118,1.6247274317164928,0.8255235078265388,2.061755458452844,1.7044915825264675,3.9095453372689835,1.4505234000322456,0.9849156177661165,1.381166413425373,3.522871967228672,0.8640405179088715,2.675967780218867,1.391459541339688,1.2366624248736553,0.22634813990346525,2.900777128765383,3.011956079056665,1.8375903418260633,0.10025398518608858,1.060636387650295,2.240397035252486,4.491724180087785,4.0367430176883365,1.943643799716524],"alpha":[0.48293943136903383,4.786866882934266,2.505182966782508,1.0798332438526714,2.0584189665284502,0.5234611208718265,2.6202835072568567,4.042959192403214,1.9317093830125176,4.097255599651345,2.038755978843109,0.10935215933755238,2.1073424439676103,3.37945316688129,1.3516795218303645,3.2739067633733656,0.1799146049614564,3.515086986796109,2.8011067804764345,4.159525361034753,0.5088520527538065,3.986094355876859,2.098973350566128,0.21092302335231183,4.564231954257133,3.9110141100386207,4.908915553000491,4.823311578638738,4.181493372995285,0.09279795700668281,1.9873139364761883,3.119107146202047,4.2207080094062475,1.012517589293015,3.6544988841896298,1.573245914163266,2.8366417260981756,1.6946371701215779,2.105153809283773,1.107551528875701,3.992152571428913,0.4968834887911189,2.475007428733347,2.0053926051616724,1.8083064972707186,4.42848790572537,1.1294102155040942,3.788955384045906,2.342911460836814,3.087952026103081,2.850170395013688,4.401706607571275,3.6826856875900296,2.862803086619828,3.9437516326473565,2.857218762812429,2.6496828432135944,4.538887255212465,3.0835562167765262,2.446783695153256,2.5406204829165793,1.4684549404017033,3.7930548577779732,4.801004507365038,1.849878848631823,3.334471648134525,2.489733940498563,2.7420226128417644,4.934947494821406,4.935983738111388,3.2240786869774176,1.857375027918654,2.768735850498455,0.8669959469192734,2.876412871260472,3.488571881743072,4.977238192330421,2.809112601599012,1.5968327984768926,4.596398363745663,4.974707822491537,4.5194862126572275,4.44789837411057,1.9378561179273746,3.0802797506013846,1.5903189433490783,4.552009533006193,2.7756967097134586,2.504556013547358,4.559126930071051,0.4987267902741821,1.2683266890058165,4.366214209967815,1.4426358315794396,4.988089425310022,4.90007436077388,1.9727368860528482,3.0475304754484664,3.3000157430431853,3.8078441815844455],"s":[0.4138485463450048,3.024694826078619,3.9221309234010358,1.2881307232257833,4.65935957388642,2.105982650721947,4.574321412762055,1.7937101062004979,4.3250035071333235,1.767554189874766,0.2052694603796179,1.5004675018178526,0.726587608749858,3.925130529355012,3.6347994099323278,2.2471448562549656,2.146451683682933,1.2386854257727808,3.1844196298018512,3.4320592795104465,4.1991625969645625,3.397395653146692,4.132652911500702,1.4490990232592416,0.6834497540418616,1.5773982431580114,4.159440564213978,3.2749307401264938,4.878813147822415,2.605923685081748,3.961342502045105,1.812234899491163,4.124215881604496,3.9722435991247016,4.086871904326631,3.0533685448094605,3.6430939522888317,3.760588158928803,4.021786821705822,2.7798124445415437,2.9706755282595942,4.471315601299963,1.5670295393180345,1.2412710347424127,4.574858250213793,2.667329652504872,3.9639753984780404,1.5967149335817055,0.19428935765809285,2.891653369356555,4.752635587779906,0.8913504395222116,0.6960256715349533,1.6481206945493676,0.3818855565492807,3.303021411777598,4.360681259209166,0.9286453977299658,3.167273373085069,4.251402669357929,3.7854701919288636,4.878844808730226,4.548678847061743,3.3691658373327593,2.967959966319494,4.803467045606775,3.5037077689658513,0.7685893801398014,2.2776591934558565,0.14400690233473346,3.9698450983045763,4.728356331783504,0.7295528372576687,0.15997683151335207,0.8894687354072062,2.2909897838969515,4.194370395140598,1.810760855903466,1.1193903991879928,2.1519724496009305,1.7684206090787347,4.086336228339766,1.518189672854433,1.2208183324948985,1.5131611902658182,4.787635573357113,0.9025704983526162,2.9896612284924062,1.5912020223005674,1.2916410026293146,2.0555893113797516,4.587493219967121,3.1576308976246303,2.6471549201169733,0.10399449514471248,1.1016063711150548,2.7580314938965222,4.930069703580685,4.373866187882909,2.066389076221017]} \ No newline at end of file +{"expected":[0.04054670886385698,2.9071633864596036,3.430001474308017,0.7019953145573217,3.8440128140692122,0.2736203432090051,4.043401469139862,1.6982855345872792,3.484932247114753,1.6758097675958257,0.16877438168744935,9.42708638335457e-10,0.6043052675066616,3.6353226201616247,2.412961542058587,2.071443475192534,6.192664843881625e-5,1.1535293175284829,2.855609754517253,3.2588201507395316,0.4959938537311381,3.2118711506578386,3.4325185509999065,0.0003653122247025663,0.6544194656463284,1.4881902248359131,4.005268748834892,3.149471583202116,4.634936456861597,7.494516359424419e-12,3.2267863604536307,1.6576551215553479,3.921593498496111,2.01551975131109,3.8251368404599857,2.23334155613784,3.275195774798034,2.860199772523243,3.343760950078749,1.5550145122004475,2.808906807317686,0.48591533757764116,1.366250072798298,1.0144997741038524,3.586398818594326,2.5474738791849325,2.260893564736411,1.5009996620645416,0.16694035543823155,2.6405305693090098,4.276706947081542,0.850843179691973,0.6520716122394071,1.4843631624287872,0.36061725362920616,2.9736977812272882,3.8643114832809227,0.8887882332574705,2.8915131096801128,3.6958145398173583,3.3218944032198503,3.42539186368263,4.2765479029964215,3.238970505190219,2.3496385774346633,4.440110108408597,3.059357762724506,0.6861953147949772,2.1940706392625384,0.13872402932784733,3.6507567446022273,3.749678720660594,0.6526648294321498,0.06604296548414254,0.8018293289769615,2.1313082718558674,4.042887226255118,1.6247274317164928,0.8255235078265388,2.061755458452844,1.7044915825264675,3.9095453372689835,1.4505234000322456,0.9849156177661165,1.381166413425373,3.522871967228672,0.8640405179088715,2.675967780218867,1.391459541339688,1.2366624248736553,0.22634813990346525,2.900777128765383,3.011956079056665,1.8375903418260633,0.10025398518608858,1.060636387650295,2.240397035252486,4.491724180087785,4.0367430176883365,1.943643799716524],"alpha":[0.48293943136903383,4.786866882934266,2.505182966782508,1.0798332438526714,2.0584189665284502,0.5234611208718265,2.6202835072568567,4.042959192403214,1.9317093830125176,4.097255599651345,2.038755978843109,0.10935215933755238,2.1073424439676103,3.37945316688129,1.3516795218303645,3.2739067633733656,0.1799146049614564,3.515086986796109,2.8011067804764345,4.159525361034753,0.5088520527538065,3.986094355876859,2.098973350566128,0.21092302335231183,4.564231954257133,3.9110141100386207,4.908915553000491,4.823311578638738,4.181493372995285,0.09279795700668281,1.9873139364761883,3.119107146202047,4.2207080094062475,1.012517589293015,3.6544988841896298,1.573245914163266,2.8366417260981756,1.6946371701215779,2.105153809283773,1.107551528875701,3.992152571428913,0.4968834887911189,2.475007428733347,2.0053926051616724,1.8083064972707186,4.42848790572537,1.1294102155040942,3.788955384045906,2.342911460836814,3.087952026103081,2.850170395013688,4.401706607571275,3.6826856875900296,2.862803086619828,3.9437516326473565,2.857218762812429,2.6496828432135944,4.538887255212465,3.0835562167765262,2.446783695153256,2.5406204829165793,1.4684549404017033,3.7930548577779732,4.801004507365038,1.849878848631823,3.334471648134525,2.489733940498563,2.7420226128417644,4.934947494821406,4.935983738111388,3.2240786869774176,1.857375027918654,2.768735850498455,0.8669959469192734,2.876412871260472,3.488571881743072,4.977238192330421,2.809112601599012,1.5968327984768926,4.596398363745663,4.974707822491537,4.5194862126572275,4.44789837411057,1.9378561179273746,3.0802797506013846,1.5903189433490783,4.552009533006193,2.7756967097134586,2.504556013547358,4.559126930071051,0.4987267902741821,1.2683266890058165,4.366214209967815,1.4426358315794396,4.988089425310022,4.90007436077388,1.9727368860528482,3.0475304754484664,3.3000157430431853,3.8078441815844455],"s":[0.4138485463450048,3.024694826078619,3.9221309234010358,1.2881307232257833,4.65935957388642,2.105982650721947,4.574321412762055,1.7937101062004979,4.3250035071333235,1.767554189874766,0.2052694603796179,1.5004675018178526,0.726587608749858,3.925130529355012,3.6347994099323278,2.2471448562549656,2.146451683682933,1.2386854257727808,3.1844196298018512,3.4320592795104465,4.1991625969645625,3.397395653146692,4.132652911500702,1.4490990232592416,0.6834497540418616,1.5773982431580114,4.159440564213978,3.2749307401264938,4.878813147822415,2.605923685081748,3.961342502045105,1.812234899491163,4.124215881604496,3.9722435991247016,4.086871904326631,3.0533685448094605,3.6430939522888317,3.760588158928803,4.021786821705822,2.7798124445415437,2.9706755282595942,4.471315601299963,1.5670295393180345,1.2412710347424127,4.574858250213793,2.667329652504872,3.9639753984780404,1.5967149335817055,0.19428935765809285,2.891653369356555,4.752635587779906,0.8913504395222116,0.6960256715349533,1.6481206945493676,0.3818855565492807,3.303021411777598,4.360681259209166,0.9286453977299658,3.167273373085069,4.251402669357929,3.7854701919288636,4.878844808730226,4.548678847061743,3.3691658373327593,2.967959966319494,4.803467045606775,3.5037077689658513,0.7685893801398014,2.2776591934558565,0.14400690233473346,3.9698450983045763,4.728356331783504,0.7295528372576687,0.15997683151335207,0.8894687354072062,2.2909897838969515,4.194370395140598,1.810760855903466,1.1193903991879928,2.1519724496009305,1.7684206090787347,4.086336228339766,1.518189672854433,1.2208183324948985,1.5131611902658182,4.787635573357113,0.9025704983526162,2.9896612284924062,1.5912020223005674,1.2916410026293146,2.0555893113797516,4.587493219967121,3.1576308976246303,2.6471549201169733,0.10399449514471248,1.1016063711150548,2.7580314938965222,4.930069703580685,4.373866187882909,2.066389076221017]} diff --git a/test/fixtures/julia/runner.jl b/test/fixtures/julia/runner.jl index 3c389ad..185b980 100644 --- a/test/fixtures/julia/runner.jl +++ b/test/fixtures/julia/runner.jl @@ -57,6 +57,7 @@ function gen( alpha, s, name ) # Write the data to the output filepath as JSON: outfile = open( filepath, "w" ); write( outfile, JSON.json(data) ); + write( outfile, "\n" ); close( outfile ); end