reallysimple 0.4.19 → 0.4.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "reallysimple",
3
3
  "description": "A Node package that reads RSS-like feeds and calls back with a simple, consistent JavaScript object. Easy to use, hides the history.",
4
- "version": "0.4.19",
4
+ "version": "0.4.21",
5
5
  "author": "Dave Winer <dave@scripting.com>",
6
6
  "license": "MIT",
7
7
  "files": [
@@ -18,7 +18,7 @@
18
18
  "node-emoji": "*",
19
19
  "opml": "*",
20
20
  "daveutils": "*",
21
- "davefeedread": "*"
21
+ "davefeedread": ">=0.5.22"
22
22
  },
23
23
  "engines": {
24
24
  "node": "*"
package/reallysimple.js CHANGED
@@ -1,4 +1,4 @@
1
- var myProductName = "reallysimple", myVersion = "0.4.19";
1
+ var myProductName = "reallysimple", myVersion = "0.4.21";
2
2
 
3
3
  exports.readFeed = readFeed;
4
4
  exports.convertFeedToOpml = convertFeedToOpml;
package/worknotes.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Worknotes
2
2
 
3
+ #### 9/29/22 by DW -- v0.4.20
4
+
5
+ I did an update to the davefeedread package, but for some reason NPM isn't picking it up. So I changed the spec in package.json to specify the exact version or greater, to "force" it to use the correct version, I hope.
6
+
3
7
  #### 8/25/22 by DW -- v0.4.19
4
8
 
5
9
  We now return the markdowntext for items that have the source:markdown element.