Skip to content

Commit

Permalink
2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickSachs committed Feb 7, 2021
1 parent be53b9a commit 54a25b1
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 5 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Changelog

## Unreleased

- Nothing so far

## 2.0.1

- Recompiled the source code
- License changed to Apache 2.0

## 2.0.0

- Package name changed from `ajax` to `@sahnee/ajax`

## 1.0.2

- Allow more flexible parameters in functions accepting URLs.

## 1.0.0

- Fixed incrrect typescript definitions

## 1.0.0

- Initial release
7 changes: 4 additions & 3 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ var __rest = (this && this.__rest) || function (s, e) {
return t;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.json = exports.ajax = exports.url = exports.defaultInit = void 0;
/**
* Content-Type for JSON without UTF-8.
*/
Expand Down Expand Up @@ -314,7 +315,7 @@ var APIError = /** @class */ (function (_super) {
get: function () {
return this.$code;
},
enumerable: true,
enumerable: false,
configurable: true
});
Object.defineProperty(APIError.prototype, "status", {
Expand All @@ -324,7 +325,7 @@ var APIError = /** @class */ (function (_super) {
get: function () {
return this.$status;
},
enumerable: true,
enumerable: false,
configurable: true
});
Object.defineProperty(APIError.prototype, "details", {
Expand All @@ -334,7 +335,7 @@ var APIError = /** @class */ (function (_super) {
get: function () {
return this.$details;
},
enumerable: true,
enumerable: false,
configurable: true
});
return APIError;
Expand Down
2 changes: 1 addition & 1 deletion 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sahnee/ajax",
"version": "2.0.0",
"version": "2.0.1",
"description": "A dependency-free utility library for making AJAX requests in JavaScript & TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 54a25b1

Please sign in to comment.