Skip to content

Commit 2c71454

Browse files
release: 1.7.1
1 parent 51a4616 commit 2c71454

File tree

5 files changed

+41
-12
lines changed

5 files changed

+41
-12
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.7.0"
2+
".": "1.7.1"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.7.1 (2025-02-14)
4+
5+
Full Changelog: [v1.7.0...v1.7.1](https://github.com/OneBusAway/js-sdk/compare/v1.7.0...v1.7.1)
6+
7+
### Bug Fixes
8+
9+
* **client:** fix export map for index exports ([#309](https://github.com/OneBusAway/js-sdk/issues/309)) ([8fdcd07](https://github.com/OneBusAway/js-sdk/commit/8fdcd072de4d65fd27f5416cc634253ad8517863))
10+
311
## 1.7.0 (2025-02-05)
412

513
Full Changelog: [v1.6.11...v1.7.0](https://github.com/OneBusAway/js-sdk/compare/v1.6.11...v1.7.0)

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "onebusaway-sdk",
3-
"version": "1.7.0",
3+
"version": "1.7.1",
44
"description": "The official TypeScript library for the Onebusaway SDK API",
55
"author": "Onebusaway SDK <[email protected]>",
66
"types": "dist/index.d.ts",
@@ -107,17 +107,38 @@
107107
"default": "./dist/index.mjs"
108108
},
109109
"./*.mjs": {
110-
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
111-
"default": ["./dist/*.mjs", "./dist/*/index.mjs"]
110+
"types": [
111+
"./dist/*.d.ts",
112+
"./dist/*/index.d.ts"
113+
],
114+
"default": [
115+
"./dist/*.mjs",
116+
"./dist/*/index.mjs"
117+
]
112118
},
113119
"./*.js": {
114-
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
115-
"default": ["./dist/*.js", "./dist/*/index.js"]
120+
"types": [
121+
"./dist/*.d.ts",
122+
"./dist/*/index.d.ts"
123+
],
124+
"default": [
125+
"./dist/*.js",
126+
"./dist/*/index.js"
127+
]
116128
},
117129
"./*": {
118-
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
119-
"require": ["./dist/*.js", "./dist/*/index.js"],
120-
"default": ["./dist/*.mjs", "./dist/*/index.mjs"]
130+
"types": [
131+
"./dist/*.d.ts",
132+
"./dist/*/index.d.ts"
133+
],
134+
"require": [
135+
"./dist/*.js",
136+
"./dist/*/index.js"
137+
],
138+
"default": [
139+
"./dist/*.mjs",
140+
"./dist/*/index.mjs"
141+
]
121142
}
122143
}
123144
}

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '1.7.0'; // x-release-please-version
1+
export const VERSION = '1.7.1'; // x-release-please-version

0 commit comments

Comments
 (0)