Skip to content

Commit

Permalink
docs(archive): update @std/archive deprecation notices
Browse files Browse the repository at this point in the history
  • Loading branch information
iuioiua committed Sep 20, 2024
1 parent 0b2497f commit cd84a9a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions archive/_common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import type { Reader } from "@std/io/types";
* Base interface for {@linkcode TarMeta}.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*/
Expand Down Expand Up @@ -48,7 +48,7 @@ export interface TarInfo {
* Base interface for {@linkcode TarMetaWithLinkName}.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*/
Expand Down
2 changes: 1 addition & 1 deletion archive/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
* ```
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*
Expand Down
8 changes: 4 additions & 4 deletions archive/tar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export type { TarInfo, TarMeta };
* Options for {@linkcode Tar.append}.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*/
Expand Down Expand Up @@ -126,7 +126,7 @@ function formatHeader(data: TarData): Uint8Array {
* Base interface for {@linkcode TarDataWithSource}.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*/
Expand Down Expand Up @@ -180,7 +180,7 @@ export interface TarData {
* Tar data interface for {@linkcode Tar.data}.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*/
Expand All @@ -202,7 +202,7 @@ export interface TarDataWithSource extends TarData {
* have the '.tar' extension.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* ### Usage
* The workflow is to create a Tar instance, append files to it, and then write the
Expand Down
10 changes: 5 additions & 5 deletions archive/untar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export type { Reader, Seeker };
* symbolic link values without polluting the world of archive writers.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*/
Expand All @@ -60,7 +60,7 @@ export interface TarMetaWithLinkName extends TarMeta {
* Tar header with raw, unprocessed bytes as values.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*/
Expand Down Expand Up @@ -103,7 +103,7 @@ function parseHeader(buffer: Uint8Array): TarHeader {
* Tar entry
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*
Expand Down Expand Up @@ -134,7 +134,7 @@ export interface TarEntry extends TarMetaWithLinkName {}
* Contains tar header metadata and a reader to the entry's body.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* @experimental **UNSTABLE**: New API, yet to be vetted.
*
Expand Down Expand Up @@ -338,7 +338,7 @@ export class TarEntry implements Reader {
* archives typically have the '.tar' extension.
*
* @deprecated Use {@linkcode https://jsr.io/@std/tar | @std/tar} instead.
* `@std/archive` will be removed in the future.
* `@std/archive` will be removed after 0.225.4.
*
* ### Supported file formats
* Only the ustar file format is supported. This is the most common format. The
Expand Down

0 comments on commit cd84a9a

Please sign in to comment.