Skip to content

Commit

Permalink
Bump version to v65
Browse files Browse the repository at this point in the history
  • Loading branch information
ije committed Feb 5, 2022
1 parent 9c6d615 commit 2947307
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## v65

_todo_

## v64

- Fix Node.js `process` compatibility (close [#253](https://github.com/esm-dev/esm.sh/issues/253))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ import unescape from "https://esm.sh/lodash/unescape?no-check"
Since we update esm.sh server very frequently, sometime we may break packages that work fine previously by mistake, the server will rebuild modules you imported when the patch pushed. To avoid this, you can pin the build version by the `?pin=BUILD_VERSON` query.

```javascript
import React from "https://esm.sh/[email protected]?pin=v64"
import React from "https://esm.sh/[email protected]?pin=v65"
```

<br>
Expand Down
2 changes: 1 addition & 1 deletion server/consts.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package server

// ems.sh version
const VERSION = 64
const VERSION = 65

const (
pkgCacheTimeout = 10 * 60 // 10 minutes
Expand Down

0 comments on commit 2947307

Please sign in to comment.