Skip to content

Commit 139032f

Browse files
committed
Add travis + badge and bump version
1 parent 7938ef9 commit 139032f

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
language: node_js
2+
node_js:
3+
- "0.12"
4+
- "0.11"
5+
- "0.10"

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
ndarray-fft
22
===========
3-
A fast Fourier transform implementation for [ndarrays](https://github.com/mikolalysenko/ndarray). You can use this to do image processing operations on big, higher dimensional typed arrays in JavaScript.
3+
4+
[![Build Status](https://travis-ci.org/scijs/ndarray-fft.svg)](https://travis-ci.org/scijs/ndarray-fft)
5+
6+
> A fast Fourier transform implementation for [ndarrays](https://github.com/mikolalysenko/ndarray). You can use this to do image processing operations on big, higher dimensional typed arrays in JavaScript.
47
58
## Example
69

@@ -41,4 +44,4 @@ Executes a fast Fourier transform on the complex valued array x/y.
4144
# Credits
4245
(c) 2013 Mikola Lysenko. MIT License.
4346

44-
Radix 2 FFT based on code by Paul Bourke.
47+
Radix 2 FFT based on code by Paul Bourke.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ndarray-fft",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "FFT for ndarrays",
55
"main": "fft.js",
66
"directories": {

0 commit comments

Comments
 (0)