Skip to content

Commit

Permalink
10.2.0rc
Browse files Browse the repository at this point in the history
  • Loading branch information
spencermountain committed Oct 3, 2023
1 parent 6084a88 commit bbf84d3
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 38 deletions.
2 changes: 1 addition & 1 deletion builds/wtf_wikipedia-client.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/wtf_wikipedia-client.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/wtf_wikipedia.cjs
Expand Up @@ -10520,7 +10520,7 @@
})
};

var version = '10.1.7';
var version = '10.2.0';

/**
* use the native client-side fetch function
Expand Down
2 changes: 1 addition & 1 deletion builds/wtf_wikipedia.mjs
Expand Up @@ -10516,7 +10516,7 @@ const fetch = function (title, options, callback) {
})
};

var version = '10.1.7';
var version = '10.2.0';

/**
* use the native client-side fetch function
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Expand Up @@ -4,7 +4,12 @@
-->

#### 10.2.0 [Oct 2023]

- **[change]** - typescript export helpers

#### 10.1.7 [Sep 2023]

- **[fix]** - don't crash on huge geojson blob #555

#### 10.1.6 [Sep 2023]
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "wtf_wikipedia",
"description": "parse wikiscript into json",
"version": "10.1.7",
"version": "10.2.0",
"main": "src/index.js",
"module": "builds/wtf_wikipedia.mjs",
"unpkg": "builds/wtf_wikipedia-client.min.js",
Expand Down
32 changes: 2 additions & 30 deletions scratch.js
Expand Up @@ -3,36 +3,8 @@ console.log('start')

let str = `hello
{{usableitinerary}}
{{PartOfItinerary|North America itineraries}}
<maplink text="" zoom="5" group="route1" class="no-icon">
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "LineString",
"coordinates": [
[
-117.02964,
32.54259
],
[
-117.03059,
32.54305
]
]
}
}
]
}
</maplink>
`
// let doc = wtf(str)
const doc = await wtf.fetch('https://en.wikivoyage.org/wiki/Interstate_5');
const doc = await wtf.fetch('https://en.wikivoyage.org/wiki/Interstate_5')

console.log(doc.text());
console.log(doc.text())
2 changes: 1 addition & 1 deletion src/_version.js
@@ -1 +1 @@
export default '10.1.7'
export default '10.2.0'

0 comments on commit bbf84d3

Please sign in to comment.