hono 3.1.6 → 3.1.7

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.
@@ -127,7 +127,7 @@ class Context {
127
127
  this._preparedHeaders = {};
128
128
  }
129
129
  if (this._preparedHeaders["content-type"]) {
130
- this._preparedHeaders["content-type"] = "text/plain; charset=UTF8";
130
+ this._preparedHeaders["content-type"] = "text/plain; charset=UTF-8";
131
131
  }
132
132
  return typeof arg === "number" ? this.newResponse(text, arg, headers) : this.newResponse(text, arg);
133
133
  };
package/dist/context.js CHANGED
@@ -113,7 +113,7 @@ var Context = class {
113
113
  this._preparedHeaders = {};
114
114
  }
115
115
  if (this._preparedHeaders["content-type"]) {
116
- this._preparedHeaders["content-type"] = "text/plain; charset=UTF8";
116
+ this._preparedHeaders["content-type"] = "text/plain; charset=UTF-8";
117
117
  }
118
118
  return typeof arg === "number" ? this.newResponse(text, arg, headers) : this.newResponse(text, arg);
119
119
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hono",
3
- "version": "3.1.6",
3
+ "version": "3.1.7",
4
4
  "description": "Ultrafast web framework for the Edge",
5
5
  "main": "dist/cjs/index.js",
6
6
  "type": "module",