Skip to content

Commit

Permalink
Merge pull request #9 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 committed Apr 8, 2021
2 parents dec910c + 18e2c11 commit fd8a18a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -102,7 +102,7 @@ Moogle works in the browser, Node and Deno! How to do it?
In the browser:

```html
<script src="https://unpkg.com/@drashland/moogle@0.0.4"></script>
<script src="https://unpkg.com/@drashland/moogle@0.0.5"></script>
```

In Node:
Expand Down Expand Up @@ -131,13 +131,13 @@ In Deno:

```javascript
// JavaScript
import { Moogle } from "https://deno.land/x/moogle@v0.0.4/mod.ts";
import { Moogle } from "https://deno.land/x/moogle@v0.0.5/mod.ts";
const service = new Moogle();
```

```typescript
// TypeScript
import { Moogle } from "https://deno.land/x/moogle@v0.0.4/mod.ts";
import { Moogle } from "https://deno.land/x/moogle@v0.0.5/mod.ts";
const service = new Moogle<MyType>();
```

Expand Down
2 changes: 1 addition & 1 deletion egg.json
@@ -1,7 +1,7 @@
{
"name": "moogle",
"description": "An easy way to 'Google' your 'Map' using search terms.",
"version": "0.0.4",
"version": "0.0.5",
"stable": true,
"repository": "https://github.com/drashland/moogle",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@drashland/moogle",
"version": "0.0.4",
"version": "0.0.5",
"description": "An easy way to \"Google\" your \"Map\" using search terms",
"main": "./lib/Moogle.js",
"types": "./lib/Moogle.d.ts",
Expand Down

0 comments on commit fd8a18a

Please sign in to comment.