diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 4e697ad7..9c3fca47 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. Dates are displayed in UTC. +#### v10.2.2 + +> + +- fix: :zap: improve orbit finder algorithm for breakups +- fix: :bug: fix linter and tests +- docs: :memo: update CHANGELOG + #### v10.2.1 > diff --git a/package-lock.json b/package-lock.json index 31a5afa8..a74d33b4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "keeptrack.space", - "version": "10.2.1", + "version": "10.2.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "keeptrack.space", - "version": "10.2.1", + "version": "10.2.2", "license": "AGPL-3.0", "dependencies": { "@analytics/google-analytics": "^1.0.7", diff --git a/package.json b/package.json index 16f9de5d..d030ea2a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "keeptrack.space", - "version": "10.2.1", + "version": "10.2.2", "type": "module", "description": "Complex astrodynamics tools designed for non-engineers to make learning about orbital mechanics and satellite operations more accessible.", "author": "Theodore Kruczek", diff --git a/src/plugins/breakup/breakup.ts b/src/plugins/breakup/breakup.ts index 63a42cc8..cd434fbb 100644 --- a/src/plugins/breakup/breakup.ts +++ b/src/plugins/breakup/breakup.ts @@ -18,7 +18,7 @@ import { SelectSatManager } from '../select-sat-manager/select-sat-manager'; export class Breakup extends KeepTrackPlugin { readonly id = 'Breakup'; dependencies_ = [SelectSatManager.name]; - private selectSatManager_: SelectSatManager; + private readonly selectSatManager_: SelectSatManager; constructor() { super(); @@ -69,8 +69,9 @@ export class Breakup extends KeepTrackPlugin {