Skip to content

Commit

Permalink
Make necessary pre-release changes (#15)
Browse files Browse the repository at this point in the history
Co-authored-by: drashbot <drashbot@users.noreply.github.com>
  • Loading branch information
drashbot and drashbot committed Jun 10, 2021
1 parent 1dad53d commit 89d7ea2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ quickstart guide below to get started quickly. We have quickstart guides for:
1. Create your `app.js` file.
```javascript
import { Moogle } from "https://unpkg.com/@drashland/moogle@0.0.8/lib/esm/Moogle.js";
import { Moogle } from "https://unpkg.com/@drashland/moogle@1.0.0/lib/esm/Moogle.js";
const service = new Moogle();
service.addItem(["hello"], "world");
Expand All @@ -149,7 +149,7 @@ quickstart guide below to get started quickly. We have quickstart guides for:
1. Create your `app.ts` file.
```typescript
import { Moogle } from "https://deno.land/x/moogle@v0.0.8/mod.ts";
import { Moogle } from "https://deno.land/x/moogle@v1.0.0/mod.ts";
const serviceWithoutTypes = new Moogle();
// Or use the following syntax to specify a type (in this case, it's a string)
// const serviceWithTypes = new Moogle<string>();
Expand Down Expand Up @@ -185,7 +185,7 @@ quickstart guide below to get started quickly. We have quickstart guides for:
<body>
<p>Open up your console to see Moogle working.</p>
<script type="module">
import { Moogle } from "https://unpkg.com/@drashland/moogle@0.0.8/lib/esm/Moogle.js";
import { Moogle } from "https://unpkg.com/@drashland/moogle@1.0.0/lib/esm/Moogle.js";
const service = new Moogle();
service.addItem(["hello"], "world");
Expand Down Expand Up @@ -239,7 +239,7 @@ inputs into a search field and see the results in a results field.
2. Add the following script before the closing `</body>` tag.
```html
<script type="module">
import { Moogle } from "https://unpkg.com/@drashland/moogle@0.0.8/lib/esm/Moogle.js";
import { Moogle } from "https://unpkg.com/@drashland/moogle@1.0.0/lib/esm/Moogle.js";
// Set up Moogle and add some items you can search for
const service = new Moogle();
Expand Down
2 changes: 1 addition & 1 deletion egg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "moogle",
"description": "An easy way to 'Google' your 'Map' using search terms.",
"version": "0.0.8",
"version": "1.0.0",
"stable": true,
"repository": "https://github.com/drashland/moogle",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@drashland/moogle",
"version": "0.0.8",
"version": "1.0.0",
"description": "An easy way to \"Google\" your \"Map\" using search terms",
"main": "./lib/cjs/Moogle.js",
"types": "./lib/cjs/Moogle.d.ts",
Expand Down

0 comments on commit 89d7ea2

Please sign in to comment.