From cf4e9ca6ce47b1a4ee8424f35e52d1edb85c004a Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sun, 28 Jul 2024 13:09:16 +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 | 18 +-- test/fixtures/julia/data.json | 2 +- test/fixtures/julia/runner.jl | 1 + 14 files changed, 251 insertions(+), 45 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 2334034..8821dc1 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 b0a584a..9b0645d 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 4da8db6..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-median/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 cfb77e6..32f6b64 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-median.svg [npm-url]: https://npmjs.org/package/@stdlib/stats-base-dists-frechet-median -[test-image]: https://github.com/stdlib-js/stats-base-dists-frechet-median/actions/workflows/test.yml/badge.svg?branch=main -[test-url]: https://github.com/stdlib-js/stats-base-dists-frechet-median/actions/workflows/test.yml?query=branch:main +[test-image]: https://github.com/stdlib-js/stats-base-dists-frechet-median/actions/workflows/test.yml/badge.svg?branch=v0.2.2 +[test-url]: https://github.com/stdlib-js/stats-base-dists-frechet-median/actions/workflows/test.yml?query=branch:v0.2.2 [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-base-dists-frechet-median/main.svg [coverage-url]: https://codecov.io/github/stdlib-js/stats-base-dists-frechet-median?branch=main diff --git a/package.json b/package.json index 514029a..5f17bc3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@stdlib/stats-base-dists-frechet-median", - "version": "0.2.1", + "version": "0.2.2", "description": "Fréchet distribution median.", "license": "Apache-2.0", "author": { @@ -37,20 +37,20 @@ "url": "https://github.com/stdlib-js/stdlib/issues" }, "dependencies": { - "@stdlib/constants-float64-ln-two": "^0.2.1", - "@stdlib/math-base-assert-is-nan": "^0.2.1", - "@stdlib/math-base-special-pow": "^0.2.1" + "@stdlib/constants-float64-ln-two": "^0.2.2", + "@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 26477c6..c8873ba 100644 --- a/test/fixtures/julia/data.json +++ b/test/fixtures/julia/data.json @@ -1 +1 @@ -{"expected":[1.1267089055418176,2.6459924063747637,1.08383369180307,4.93443948588417,2.6933615704706346,1.3897134819639282e12,1.7190857122375975,5.721759042876891,11.511450516088061,3.404605298726321,10.615270490288383,9.482807641124968,2.3537125500575855,2.581673113628124,4.150858166927559,841.1089359995011,2.293155720669983,2.7882714938040367,3.164183618937013e8,2.157409450922187,2.2860432720864243,2.8297164398290318,4.3692957988925425,2.252380569948656,2.773028136144134,3.0571462957165885,3.8022708242206598,2.3972313540834067,6.3487261126550365,4.597949257515176,5.696712591126783,5.166913862867802,4.652305155963002,1.4939223614214134,4.491701232637407,3.1802162524418978,1.4230896435796878,3.55198689054366,5.6910162184180155,1.1620616471655485,3.5452987784919845,4.198697908306471,4.964649684220967,2.3051022008860933,110.34729340266718,4.1921788132582405,0.18051461439673486,5.0827858618354815,0.560979498650363,1.4040511078416853,150.7547031714725,0.10356696321394283,14.310789249894427,3.620464852322055,4.429038069587052,1.4653199523596756,0.5366898884590542,4.497889662497021,1.1676556491024483,2.413421428740926,0.3277974733426668,2.573064598522971,35.731129400178624,5.3497787571714355,6.9809533207038434,3.8029930004282373,0.7166783645170252,1.8003782200540441,2.15469496162696,5.853271143447005,5.3464069065127,3.4238373545605247,4.284267901384729,0.21912351212092523,5.055092771312278,1.8402250661829316,4.959227548319108,7.6433098404267055,5.346897476903727,5.77394519772585,4.478372789180182,2.496316081877669,1.3318418518723674,2.425574591068516,5.6923194664257695,32.7139645440485,0.6479501555343785,4.8065760286788555,93.25777782220985,5.734215410816613,1.2092082744950268,139.71243467918566,0.5104173694614574,4.0733361174655185,4.163878283189801,4.405924661026233,5.967785009868506,3.1866882954777314,1.3313223451037741,0.12157248882965244],"alpha":[4.509284423718406,0.7127502235133676,2.4965724766111097,3.114822268723759,3.4264932095150513,0.013896002889814962,3.630194658543384,0.3517188712060959,0.2513709352001403,4.779229305199138,0.3329020727920806,0.46679161460193574,0.8122508590399113,0.6064461917207653,2.012642312050612,0.06691741870469614,3.9174445034050063,4.007884397114315,0.020251221145917153,1.9681482605769518,1.4876023350787526,2.4349102769173117,3.0135847283924813,2.729394336953208,1.7626148371051154,2.0529846399017715,4.5706022713154395,4.744156521662708,1.3744779203623647,4.867740037801569,2.337225305402093,4.8194685064925835,2.437531692229226,4.037992614978936,4.8786886327492525,4.362999442717808,3.504796724380692,2.866783295857669,0.8927204300443747,1.8917591477565188,2.9588044296547986,4.289069241964588,0.817323008003038,3.672593468202958,0.11201654728651644,4.0194796910383666,1.4749526986408001,3.0108494744907697,1.4298078070548759,2.5316773341037715,0.10143092459218184,0.28240810413110884,0.327227158565192,1.322344279030726,4.1212302057951655,3.9022273866251167,1.2376971792227065,2.275105956316236,1.5532497462176287,3.921615437679465,3.1772815509186803,2.5548701119109865,0.18435800002898683,4.001251797923487,0.7014748712496355,4.838066158639748,3.973133282372446,2.0762681449901033,0.9657343385032424,1.4393305956378366,2.133370412338028,4.570035106413971,0.9946591270620919,0.886708132036349,3.03544986766065,4.615636089500779,1.7112070118679334,0.4253357248358436,2.698105173877674,1.5139405731079203,0.5393115795040437,3.3141253054183673,1.2893171713035534,4.20643180166615,2.3035373949224933,0.1675704562100533,1.7561510073542363,4.255464836804267,0.12030448310767161,1.6214445640217856,3.9745111310651646,0.0844840268362046,3.720388035358444,4.521110837409143,4.959242359489993,1.8538415595643354,0.3435302659061201,3.42106001746046,3.3569511047327447,0.935523368300113],"s":[1.038753348848399,1.582210132101618,0.9358482227491394,4.386675823802277,2.4201405811411236,4.877818713714253,1.5539968955469385,2.0182163783160654,2.6785782669043154,3.1532709369237475,3.5301148614254387,4.3245402506359625,1.4989467600130735,1.4106856577816629,3.4597964438374795,3.517070003347582,2.0883404896386546,2.544601078249644,4.367818703877439,1.7908421117032436,1.78683197177256,2.434283125979194,3.8689440100494177,1.9693510642755108,2.252414761636561,2.5573077076460606,3.509274348353404,2.219004814790193,4.862720628913926,4.264462396737225,4.869902275740906,4.788547683202947,4.00282558952982,1.3642966196327388,4.166624473043744,2.9239761717656543,1.2817875854700655,3.125702292250059,3.7747399561488604,0.9573883770551606,3.132246480395253,3.8548098040971635,3.170571333596366,2.086166677928886,4.185722060293527,3.826828650755659,0.14079718292615895,4.500231203069726,0.43413136255732065,1.214813927948184,4.0642539583305615,0.028287085267575396,4.669057359049949,2.744045715833121,4.052157796449441,1.3339568311802452,0.39913334750642404,3.8286461129368696,0.922223938375798,2.198083274009801,0.2920840815783854,2.229196178517665,4.8938156135849535,4.881515095867429,4.140002793988923,3.5255353945976573,0.6535240444048573,1.509037327675049,1.474224120448252,4.5374239525987505,4.502463914620241,3.159970865706959,2.963789706095895,0.14493631607537805,4.480129801801118,1.6997498216367957,4.003088282419398,3.2288566171784683,4.667742846311724,4.532454283388364,2.2697410514379213,2.234963574853641,1.0022964544048873,2.2231761945147497,4.8549998425773175,3.6714446260242672,0.5259001565542976,4.40992374828067,4.431877468639178,4.574099975071371,1.1026870538221134,1.8245533058546848,0.4625312212145505,3.7561531764320555,3.8672431799584106,3.6155558071919645,2.053353769509111,2.8629366849439073,1.193622015784993,0.0821656694474171]} \ No newline at end of file +{"expected":[1.1267089055418176,2.6459924063747637,1.08383369180307,4.93443948588417,2.6933615704706346,1.3897134819639282e12,1.7190857122375975,5.721759042876891,11.511450516088061,3.404605298726321,10.615270490288383,9.482807641124968,2.3537125500575855,2.581673113628124,4.150858166927559,841.1089359995011,2.293155720669983,2.7882714938040367,3.164183618937013e8,2.157409450922187,2.2860432720864243,2.8297164398290318,4.3692957988925425,2.252380569948656,2.773028136144134,3.0571462957165885,3.8022708242206598,2.3972313540834067,6.3487261126550365,4.597949257515176,5.696712591126783,5.166913862867802,4.652305155963002,1.4939223614214134,4.491701232637407,3.1802162524418978,1.4230896435796878,3.55198689054366,5.6910162184180155,1.1620616471655485,3.5452987784919845,4.198697908306471,4.964649684220967,2.3051022008860933,110.34729340266718,4.1921788132582405,0.18051461439673486,5.0827858618354815,0.560979498650363,1.4040511078416853,150.7547031714725,0.10356696321394283,14.310789249894427,3.620464852322055,4.429038069587052,1.4653199523596756,0.5366898884590542,4.497889662497021,1.1676556491024483,2.413421428740926,0.3277974733426668,2.573064598522971,35.731129400178624,5.3497787571714355,6.9809533207038434,3.8029930004282373,0.7166783645170252,1.8003782200540441,2.15469496162696,5.853271143447005,5.3464069065127,3.4238373545605247,4.284267901384729,0.21912351212092523,5.055092771312278,1.8402250661829316,4.959227548319108,7.6433098404267055,5.346897476903727,5.77394519772585,4.478372789180182,2.496316081877669,1.3318418518723674,2.425574591068516,5.6923194664257695,32.7139645440485,0.6479501555343785,4.8065760286788555,93.25777782220985,5.734215410816613,1.2092082744950268,139.71243467918566,0.5104173694614574,4.0733361174655185,4.163878283189801,4.405924661026233,5.967785009868506,3.1866882954777314,1.3313223451037741,0.12157248882965244],"alpha":[4.509284423718406,0.7127502235133676,2.4965724766111097,3.114822268723759,3.4264932095150513,0.013896002889814962,3.630194658543384,0.3517188712060959,0.2513709352001403,4.779229305199138,0.3329020727920806,0.46679161460193574,0.8122508590399113,0.6064461917207653,2.012642312050612,0.06691741870469614,3.9174445034050063,4.007884397114315,0.020251221145917153,1.9681482605769518,1.4876023350787526,2.4349102769173117,3.0135847283924813,2.729394336953208,1.7626148371051154,2.0529846399017715,4.5706022713154395,4.744156521662708,1.3744779203623647,4.867740037801569,2.337225305402093,4.8194685064925835,2.437531692229226,4.037992614978936,4.8786886327492525,4.362999442717808,3.504796724380692,2.866783295857669,0.8927204300443747,1.8917591477565188,2.9588044296547986,4.289069241964588,0.817323008003038,3.672593468202958,0.11201654728651644,4.0194796910383666,1.4749526986408001,3.0108494744907697,1.4298078070548759,2.5316773341037715,0.10143092459218184,0.28240810413110884,0.327227158565192,1.322344279030726,4.1212302057951655,3.9022273866251167,1.2376971792227065,2.275105956316236,1.5532497462176287,3.921615437679465,3.1772815509186803,2.5548701119109865,0.18435800002898683,4.001251797923487,0.7014748712496355,4.838066158639748,3.973133282372446,2.0762681449901033,0.9657343385032424,1.4393305956378366,2.133370412338028,4.570035106413971,0.9946591270620919,0.886708132036349,3.03544986766065,4.615636089500779,1.7112070118679334,0.4253357248358436,2.698105173877674,1.5139405731079203,0.5393115795040437,3.3141253054183673,1.2893171713035534,4.20643180166615,2.3035373949224933,0.1675704562100533,1.7561510073542363,4.255464836804267,0.12030448310767161,1.6214445640217856,3.9745111310651646,0.0844840268362046,3.720388035358444,4.521110837409143,4.959242359489993,1.8538415595643354,0.3435302659061201,3.42106001746046,3.3569511047327447,0.935523368300113],"s":[1.038753348848399,1.582210132101618,0.9358482227491394,4.386675823802277,2.4201405811411236,4.877818713714253,1.5539968955469385,2.0182163783160654,2.6785782669043154,3.1532709369237475,3.5301148614254387,4.3245402506359625,1.4989467600130735,1.4106856577816629,3.4597964438374795,3.517070003347582,2.0883404896386546,2.544601078249644,4.367818703877439,1.7908421117032436,1.78683197177256,2.434283125979194,3.8689440100494177,1.9693510642755108,2.252414761636561,2.5573077076460606,3.509274348353404,2.219004814790193,4.862720628913926,4.264462396737225,4.869902275740906,4.788547683202947,4.00282558952982,1.3642966196327388,4.166624473043744,2.9239761717656543,1.2817875854700655,3.125702292250059,3.7747399561488604,0.9573883770551606,3.132246480395253,3.8548098040971635,3.170571333596366,2.086166677928886,4.185722060293527,3.826828650755659,0.14079718292615895,4.500231203069726,0.43413136255732065,1.214813927948184,4.0642539583305615,0.028287085267575396,4.669057359049949,2.744045715833121,4.052157796449441,1.3339568311802452,0.39913334750642404,3.8286461129368696,0.922223938375798,2.198083274009801,0.2920840815783854,2.229196178517665,4.8938156135849535,4.881515095867429,4.140002793988923,3.5255353945976573,0.6535240444048573,1.509037327675049,1.474224120448252,4.5374239525987505,4.502463914620241,3.159970865706959,2.963789706095895,0.14493631607537805,4.480129801801118,1.6997498216367957,4.003088282419398,3.2288566171784683,4.667742846311724,4.532454283388364,2.2697410514379213,2.234963574853641,1.0022964544048873,2.2231761945147497,4.8549998425773175,3.6714446260242672,0.5259001565542976,4.40992374828067,4.431877468639178,4.574099975071371,1.1026870538221134,1.8245533058546848,0.4625312212145505,3.7561531764320555,3.8672431799584106,3.6155558071919645,2.053353769509111,2.8629366849439073,1.193622015784993,0.0821656694474171]} diff --git a/test/fixtures/julia/runner.jl b/test/fixtures/julia/runner.jl index 55ffc47..245875c 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