Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/rename-people-category.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@everipedia/iq-utils": minor
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Renaming an enum value (people_and_teams to people) is a breaking API change. According to Semantic Versioning, this should trigger a major version bump to signal an incompatible API change to consumers of the library. An incorrect version bump can cause issues in downstream projects that rely on this package. Please update this to major.

Suggested change
"@everipedia/iq-utils": minor
"@everipedia/iq-utils": major

---

Rename people_and_teams category to people
2 changes: 1 addition & 1 deletion src/schema/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export const Tag = z.enum([
export type Tag = z.infer<typeof Tag>;

export const Category = z.enum([
"people_and_teams",
"people",
"projects_and_protocols",
"organizations",
"cryptoassets",
Expand Down
Loading