Skip to content

Commit cea4d22

Browse files
committed
Merge branch 'release/0.1.3'
2 parents 4e0b0bd + 5a16ca2 commit cea4d22

File tree

15 files changed

+3209
-2233
lines changed

15 files changed

+3209
-2233
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: Documentation
3+
about: A general template for documentation requests and suggestions
4+
title: ''
5+
labels: Documentation
6+
assignees: scarletfog
7+
8+
---
9+
### Description
10+
<!--- [mandatory] Describe the need, add pictures and code snippets, if applies-->
11+
12+
### Links
13+
<!--- [mandatory] Add a link (or links) to the page that should be improved or the mistake is on-->
14+
15+
### Type of issue
16+
<!--- [mandatory] You can choose several options here e.g. a tutorial with a demo-->
17+
- [ ] Missing documentation
18+
- [ ] Error in the documentation
19+
- [ ] Request for a demo
20+
- [ ] Request for a tutorial, guide etc.
21+
- [ ] Other issues, suggestions or ideas

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.1.3] - 2020-07-21
10+
11+
### Fixed
12+
- Fixed a bug in coercion of empty string to boolean value. (#453)
13+
914
## [0.1.2] - 2020-07-13
1015

1116
### Fixed

docs/guide/changelog.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## 0.1.3
4+
**Release date: July 21, 2020**
5+
6+
### Fixed
7+
- Fixed a bug in coercion of empty string to boolean value. [#453](https://github.com/handsontable/hyperformula/issues/453)
8+
9+
## 0.1.2
10+
**Release date: July 13, 2020**
11+
12+
### Fixed
13+
- Fixed a bug in topological ordering module. [#442](https://github.com/handsontable/hyperformula/issues/442)
14+
15+
## 0.1.1
16+
**Release date: July 1, 2020**
17+
18+
### Fixed
19+
- Fixed a typo in a config option from `useRegularExpresssions` to `useRegularExpressions`. [#437](https://github.com/handsontable/hyperformula/issues/437)
20+
321
## 0.1.0
422

523
**Alpha release date: June 25, 2020 🎉**
Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
11
# Integration with Angular
22

3-
### Coming soon
3+
The installation process for applications written in Angular is the
4+
same as in the case of VanillaJS. You can check the
5+
[client-side installation](client-side-installation.md) section for
6+
more details.
7+
8+
## Demo
9+
10+
<iframe
11+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.1.x/angular-demo?autoresize=1
12+
&fontsize=11&hidenavigation=1&theme=light&view=preview"
13+
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
14+
title="handsontable/hyperformula-demos: angular-demo"
15+
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"
16+
sandbox="allow-autoplay allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts"
17+
></iframe>

docs/guide/testing.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
# Testing
2-
32
The tests are done with Jest and Jasmine. The same test suite should
43
pass on both of them because the library might be used
54
[server-side](server-side-installation) or in a browser, so you have
65
to be sure that both environments are fine.
76

8-
* **`npm run test`** - runs the linter and all tests
7+
* **`npm run test`** - runs the linter and all tests
98
* **`npm run test:unit`** - runs unit tests
10-
* **`npm run test:browser` -** runs karma test runner in browsers,
11-
prints the results in a console
9+
* **`npm run test:browser`** - runs tests in **karma** once and closes all open browsers
10+
* **`npm run test:browser.debug`** - runs test in **karma** only in Chrome until you exit the process. It watches changes in `src` and `test` directories and rebuilds them automatically.
11+
12+
If you want to run a specific `spec` file or a test suite you can add a `-spec` flag. For example:
13+
* **`npm run test:browser.debug -- --spec=matrix.spec.ts`** - runs `matrix.spec.ts` only
1214

1315
## Linting
1416

ht.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ module.exports = {
66
HT_VERSION: packageBody.version,
77
HT_PACKAGE_NAME: packageBody.name,
88
HT_BUILD_DATE: moment().format('DD/MM/YYYY HH:mm:ss'),
9-
HT_RELEASE_DATE: '13/07/2020',
9+
HT_RELEASE_DATE: '21/07/2020',
1010
};

jest.config.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33

44
module.exports = {
55
// An array of glob patterns indicating a set of files for which coverage information should be collected
6-
collectCoverageFrom: ['src/**'],
6+
collectCoverageFrom: [
7+
'src/**',
8+
'!**/node_modules/**',
9+
],
10+
11+
coverageProvider: 'v8',
712

813
// The directory where Jest should output its coverage files
914
coverageDirectory: "coverage",

0 commit comments

Comments
 (0)