Skip to content

Commit 3852f11

Browse files
committed
roll 0.1.2
1 parent e3a70fe commit 3852f11

File tree

14 files changed

+20
-13
lines changed

14 files changed

+20
-13
lines changed

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## Version 0.1.2, 2018.01.25
2+
3+
* Move Unicode escape and unescape logic out to new `escape-unicode` and `unescape-unicode` modules respectively
4+
* Configure travis to also build against Node.js v9
5+
* Replace `chai` with `assert` in unit tests
6+
* Bump dependencies
7+
18
## Version 0.1.1, 2017.12.09
29

310
* Fix require statements in README examples [#2](https://github.com/NotNinja/nevis/issues/2)

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2017 Alasdair Mercer, !ninja
1+
Copyright (C) 2018 Alasdair Mercer, !ninja
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

bin/native2ascii

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env node
22

33
/*
4-
* Copyright (C) 2017 Alasdair Mercer, !ninja
4+
* Copyright (C) 2018 Alasdair Mercer, !ninja
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-native2ascii",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Node.js implementation of Java's Native-to-ASCII Converter",
55
"homepage": "https://github.com/NotNinja/node-native2ascii",
66
"bugs": {

src/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2017 Alasdair Mercer, !ninja
2+
* Copyright (C) 2018 Alasdair Mercer, !ninja
33
*
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to deal

src/native2ascii.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2017 Alasdair Mercer, !ninja
2+
* Copyright (C) 2018 Alasdair Mercer, !ninja
33
*
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to deal

src/unicode/escape.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2017 Alasdair Mercer, !ninja
2+
* Copyright (C) 2018 Alasdair Mercer, !ninja
33
*
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to deal

src/unicode/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2017 Alasdair Mercer, !ninja
2+
* Copyright (C) 2018 Alasdair Mercer, !ninja
33
*
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to deal

src/unicode/unescape.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2017 Alasdair Mercer, !ninja
2+
* Copyright (C) 2018 Alasdair Mercer, !ninja
33
*
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to deal

test/cli.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2017 Alasdair Mercer, !ninja
2+
* Copyright (C) 2018 Alasdair Mercer, !ninja
33
*
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)