Skip to content

Commit

Permalink
Merge pull request #12 from drashland/pre-release-changes-moogle
Browse files Browse the repository at this point in the history
chore: Make necessary pre-release changes
  • Loading branch information
Guergeiro authored May 8, 2021
2 parents 2803703 + 4427c12 commit ff0a600
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ In the browser:

```javascript
// myScript.js
import { Moogle } from "https://unpkg.com/@drashland/moogle@0.0.7/lib/esm/Moogle.js";
import { Moogle } from "https://unpkg.com/@drashland/moogle@0.0.8/lib/esm/Moogle.js";
const service = new Moogle();
```

Expand Down Expand Up @@ -138,13 +138,13 @@ In Deno:

```javascript
// JavaScript
import { Moogle } from "https://unpkg.com/@drashland/moogle@0.0.7/lib/esm/Moogle.js";
import { Moogle } from "https://unpkg.com/@drashland/moogle@0.0.8/lib/esm/Moogle.js";
const service = new Moogle();
```

```typescript
// TypeScript
import { Moogle } from "https://deno.land/x/moogle@v0.0.7/mod.ts";
import { Moogle } from "https://deno.land/x/moogle@v0.0.8/mod.ts";
const serviceWithTypes = new Moogle<MyType>();
const serviceWithoutTypes = 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.7",
"version": "0.0.8",
"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.7",
"version": "0.0.8",
"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 ff0a600

Please sign in to comment.