diff --git a/README.md b/README.md index ecdab97d..168154a2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -What's Up? +What’s Up? ========== Up is a markup language for writing structured documents in plain text. For more information, check out [tryup.org!](https://tryup.org) @@ -11,6 +11,6 @@ Up supports: - Overlapping inline writing conventions - So much more! -This is the repository for [up-lang](https://www.npmjs.com/package/up-lang), a Node.js package for converting Up markup into HTML. +This is the repository for [@xcvz/up](https://www.npmjs.com/package/@xcvz/up), a Node.js package for converting Up markup into HTML. -If you're looking for tryup.org's GitHub repository, [it's over this way.](https://github.com/start/tryup.org) +If you’re looking for tryup.org’s GitHub repository, [it’s over this way.](https://github.com/start/tryup.org) diff --git a/package.json b/package.json index 67a79ca9..13500459 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@xcvz/up", - "version": "1.0.1", + "version": "1.0.2", "description": "A markup language for writing structured documents in plain text", "main": "compiled/Main.js", "types": "compiled/Main.d.ts", diff --git a/src/Main.ts b/src/Main.ts index 85e4dcc7..8fecccf8 100644 --- a/src/Main.ts +++ b/src/Main.ts @@ -47,7 +47,7 @@ export { OutlineSyntaxNode } from './Implementation/SyntaxNodes/OutlineSyntaxNod export { SyntaxNode } from './Implementation/SyntaxNodes/SyntaxNode' // This must always match the `version` field in `package.json`. -export const VERSION = '1.0.1' +export const VERSION = '1.0.2' // Below, we export bound functions to allow developers to use Up without having to create // any instances of the `Up` class.