Skip to content

Commit 64929da

Browse files
committed
bump 2.1.0
1 parent 3dd2930 commit 64929da

File tree

5 files changed

+27
-8
lines changed

5 files changed

+27
-8
lines changed

CDN.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ ESL的每个版本,都会将压缩后的资源通过CDN发布,便于开发
44

55
**2.0.0** 版本开始,发布的CDN资源将不再包括精简版。
66

7+
### 2.1.0
8+
9+
```html
10+
<!-- compressed -->
11+
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/2-1-0/esl.js"></script>
12+
13+
<!-- compressed(https) -->
14+
<script src="https://ss1.bdstatic.com/5eN1bjq8AAUYm2zgoY3K/r/www/cache/ecom/esl/2-1-0/esl.js"></script>
15+
16+
<!-- source -->
17+
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/2-1-0/esl.source.js"></script>
18+
```
19+
20+
721
### 2.0.8
822

923
```html

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11

2+
2.1.0
3+
-------
4+
5+
+ bug修复:当shim的模块为function时,会做为factory自动执行。应该不执行,将此function做为shim的模块
6+
27
2.0.8
38
-------
49

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ ESL is a browser-only, amd-compliant module loader. In modern web applications,
77

88
通过`右键另存`的方式下载ESL (Download by `Save As`):
99

10-
- [压缩代码 (Compressed)](http://s1.bdstatic.com/r/www/cache/ecom/esl/2-0-8/esl.js)
11-
- [源码 (Source)](http://s1.bdstatic.com/r/www/cache/ecom/esl/2-0-8/esl.source.js)
10+
- [压缩代码 (Compressed)](http://s1.bdstatic.com/r/www/cache/ecom/esl/2-1-0/esl.js)
11+
- [源码 (Source)](http://s1.bdstatic.com/r/www/cache/ecom/esl/2-1-0/esl.source.js)
1212

1313
### 了解AMD (About AMD)
1414

@@ -45,13 +45,13 @@ See [Configuration Options](doc/config.md)
4545

4646
```html
4747
<!-- compressed -->
48-
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/2-0-8/esl.js"></script>
48+
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/2-1-0/esl.js"></script>
4949

5050
<!-- compressed(https) -->
51-
<script src="https://ss1.bdstatic.com/5eN1bjq8AAUYm2zgoY3K/r/www/cache/ecom/esl/2-0-8/esl.js"></script>
51+
<script src="https://ss1.bdstatic.com/5eN1bjq8AAUYm2zgoY3K/r/www/cache/ecom/esl/2-1-0/esl.js"></script>
5252

5353
<!-- source -->
54-
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/2-0-8/esl.source.js"></script>
54+
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/2-1-0/esl.source.js"></script>
5555
```
5656

5757
[过往版本 (Old version)](CDN.md)
@@ -61,7 +61,7 @@ See [Configuration Options](doc/config.md)
6161

6262
`uglifyjs -mc + gzip`
6363

64-
- `esl 2.0.8` 3.5k
64+
- `esl 2.1.0` 3.5k
6565
- `requirejs 2.1.15` 6.2k
6666

6767

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "esl",
33
"description": "ESL是一个浏览器端、符合AMD的标准加载器,适合用于现代Web浏览器端应用的入口与模块管理。",
4-
"version": "2.0.8",
4+
"version": "2.1.0",
55
"contributors": [
66
{ "name": "errorrik", "email": "[email protected]" }
77
],

src/esl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ var esl;
175175
*
176176
* @type {string}
177177
*/
178-
globalRequire.version = '2.0.9';
178+
globalRequire.version = '2.1.0';
179179

180180
/**
181181
* loader名称

0 commit comments

Comments
 (0)