Merge branch 'crate-ci:master' into master

This commit is contained in:
RainRat 2024-06-03 08:18:13 -07:00 committed by GitHub
commit 6bd7433d4a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 457 additions and 124 deletions

View file

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header --> <!-- next-header -->
## [Unreleased] - ReleaseDate ## [Unreleased] - ReleaseDate
## [1.22.0] - 2024-06-03
### Fixes
- Updated the dictionary with the [May 2024](https://github.com/crate-ci/typos/issues/1007) changes
## [1.21.0] - 2024-04-30 ## [1.21.0] - 2024-04-30
### Fixes ### Fixes
@ -1135,7 +1141,8 @@ Note: MSRV is now 1.54
* Only do hex check if digits are in identifiers ([68cd36d0](https://github.com/crate-ci/typos/commit/68cd36d0de90226dbc9d31c2ce6d8bf6b69adb5c)) * Only do hex check if digits are in identifiers ([68cd36d0](https://github.com/crate-ci/typos/commit/68cd36d0de90226dbc9d31c2ce6d8bf6b69adb5c))
<!-- next-url --> <!-- next-url -->
[Unreleased]: https://github.com/crate-ci/typos/compare/v1.21.0...HEAD [Unreleased]: https://github.com/crate-ci/typos/compare/v1.22.0...HEAD
[1.22.0]: https://github.com/crate-ci/typos/compare/v1.21.0...v1.22.0
[1.21.0]: https://github.com/crate-ci/typos/compare/v1.20.10...v1.21.0 [1.21.0]: https://github.com/crate-ci/typos/compare/v1.20.10...v1.21.0
[1.20.10]: https://github.com/crate-ci/typos/compare/v1.20.9...v1.20.10 [1.20.10]: https://github.com/crate-ci/typos/compare/v1.20.9...v1.20.10
[1.20.9]: https://github.com/crate-ci/typos/compare/v1.20.8...v1.20.9 [1.20.9]: https://github.com/crate-ci/typos/compare/v1.20.8...v1.20.9

14
Cargo.lock generated
View file

@ -244,7 +244,7 @@ dependencies = [
[[package]] [[package]]
name = "codespell-dict" name = "codespell-dict"
version = "0.4.1" version = "0.4.2"
dependencies = [ dependencies = [
"codegenrs", "codegenrs",
"dictgen", "dictgen",
@ -1334,7 +1334,7 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
[[package]] [[package]]
name = "typos" name = "typos"
version = "0.10.23" version = "0.10.24"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"bstr", "bstr",
@ -1350,7 +1350,7 @@ dependencies = [
[[package]] [[package]]
name = "typos-cli" name = "typos-cli"
version = "1.21.0" version = "1.22.0"
dependencies = [ dependencies = [
"ahash", "ahash",
"anstream", "anstream",
@ -1397,7 +1397,7 @@ dependencies = [
[[package]] [[package]]
name = "typos-dict" name = "typos-dict"
version = "0.11.18" version = "0.11.19"
dependencies = [ dependencies = [
"codegenrs", "codegenrs",
"csv", "csv",
@ -1412,7 +1412,7 @@ dependencies = [
[[package]] [[package]]
name = "typos-vars" name = "typos-vars"
version = "0.8.17" version = "0.8.18"
dependencies = [ dependencies = [
"codegenrs", "codegenrs",
"dictgen", "dictgen",
@ -1515,7 +1515,7 @@ dependencies = [
[[package]] [[package]]
name = "varcon" name = "varcon"
version = "0.7.5" version = "0.7.6"
dependencies = [ dependencies = [
"codegenrs", "codegenrs",
"snapbox", "snapbox",
@ -1524,7 +1524,7 @@ dependencies = [
[[package]] [[package]]
name = "varcon-core" name = "varcon-core"
version = "4.0.7" version = "4.0.8"
dependencies = [ dependencies = [
"enumflags2", "enumflags2",
"winnow", "winnow",

View file

@ -20,7 +20,7 @@ if [[ -z $(ls ${TARGET} 2>/dev/null) ]]; then
fi fi
if [[ ! -x ${COMMAND} ]]; then if [[ ! -x ${COMMAND} ]]; then
VERSION=1.21.0 VERSION=1.22.0
log "Downloading 'typos' v${VERSION}" log "Downloading 'typos' v${VERSION}"
wget --progress=dot:mega "https://github.com/crate-ci/typos/releases/download/v${VERSION}/typos-v${VERSION}-x86_64-unknown-linux-musl.tar.gz" wget --progress=dot:mega "https://github.com/crate-ci/typos/releases/download/v${VERSION}/typos-v${VERSION}-x86_64-unknown-linux-musl.tar.gz"
mkdir -p ${_INSTALL_DIR} mkdir -p ${_INSTALL_DIR}

View file

@ -1,6 +1,6 @@
[package] [package]
name = "codespell-dict" name = "codespell-dict"
version = "0.4.1" version = "0.4.2"
description = "Source Code Spelling Correction" description = "Source Code Spelling Correction"
readme = "README.md" readme = "README.md"
categories = ["development-tools", "text-processing"] categories = ["development-tools", "text-processing"]

View file

@ -1,6 +1,6 @@
[package] [package]
name = "typos-cli" name = "typos-cli"
version = "1.21.0" version = "1.22.0"
description = "Source Code Spelling Correction" description = "Source Code Spelling Correction"
readme = "../../README.md" readme = "../../README.md"
categories = ["development-tools", "text-processing"] categories = ["development-tools", "text-processing"]
@ -41,7 +41,7 @@ doc = false
[dependencies] [dependencies]
typos = { version = "^0.10", path = "../typos" } typos = { version = "^0.10", path = "../typos" }
varcon-core = { version = "^4.0.7", path = "../varcon-core" } varcon-core = { version = "^4.0.8", path = "../varcon-core" }
typos-dict = { version = "^0.11", path = "../typos-dict", optional = true } typos-dict = { version = "^0.11", path = "../typos-dict", optional = true }
typos-vars = { version = "^0.8", path = "../typos-vars", optional = true } typos-vars = { version = "^0.8", path = "../typos-vars", optional = true }
unicase = "2.7" unicase = "2.7"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "typos-dict" name = "typos-dict"
version = "0.11.18" version = "0.11.19"
description = "Source Code Spelling Correction" description = "Source Code Spelling Correction"
readme = "../../README.md" readme = "../../README.md"
categories = ["development-tools", "text-processing"] categories = ["development-tools", "text-processing"]

View file

@ -1660,6 +1660,7 @@ afecting,affecting
afer,after afer,after
afernoon,afternoon afernoon,afternoon
aferwards,afterwards aferwards,afterwards
afeter,after
afetr,after afetr,after
affact,affect,effect affact,affect,effect
affaires,affairs affaires,affairs
@ -5616,6 +5617,7 @@ attritubed,attributed
attritubes,attributes attritubes,attributes
attriubtes,attributes attriubtes,attributes
attriubute,attribute attriubute,attribute
attrivute,attribute
attrocities,atrocities attrocities,atrocities
attrribute,attribute attrribute,attribute
attrributed,attributed attrributed,attributed
@ -6782,6 +6784,7 @@ becomme,become
becommes,becomes becommes,becomes
becomming,becoming becomming,becoming
becoms,becomes becoms,becomes
becomses,becomes
becouse,because becouse,because
becoz,because becoz,because
bector,vector bector,vector
@ -6897,6 +6900,7 @@ behtesda,bethesda
behvaior,behavior behvaior,behavior
behvaiour,behaviour behvaiour,behaviour
behvaiours,behaviours behvaiours,behaviours
behvavior,behavior
behviour,behaviour behviour,behaviour
beieve,believe beieve,believe
beig,being beig,being
@ -9299,6 +9303,7 @@ cconfiguration,configuration
ccordinate,coordinate ccordinate,coordinate
ccordinates,coordinates ccordinates,coordinates
ccordinats,coordinates ccordinats,coordinates
ccorrect,correct
ccoutant,accountant ccoutant,accountant
ccpcheck,cppcheck ccpcheck,cppcheck
ccurred,occurred ccurred,occurred
@ -10575,6 +10580,7 @@ cjoice,choice
cjoices,choices cjoices,choices
ckeck,check ckeck,check
ckecksum,checksum ckecksum,checksum
ckoud,cloud
claaes,classes claaes,classes
clacium,calcium clacium,calcium
claculate,calculate claculate,calculate
@ -10652,6 +10658,7 @@ classrooom,classroom
classs,class classs,class
classses,classes classses,classes
classsic,classics classsic,classics
classsical,classical
clasues,clauses clasues,clauses
clatified,clarified clatified,clarified
claus,clause claus,clause
@ -10747,6 +10754,7 @@ clibpoards,clipboards
clickare,clicker clickare,clicker
clickbat,clickbait clickbat,clickbait
clickear,clicker clickear,clicker
clicnial,clinical
clien,client clien,client
cliens,clients cliens,clients
clienta,client clienta,client
@ -11592,6 +11600,7 @@ commericals,commercials
commericial,commercial commericial,commercial
commericially,commercially commericially,commercially
commerorative,commemorative commerorative,commemorative
commet,comet,comment
commeted,commented,competed commeted,commented,competed
commets,comets,comments commets,comets,comments
commiest,commits commiest,commits
@ -11782,6 +11791,7 @@ communicatoin,communications
communicaton,communication communicaton,communication
communicatons,communications communicatons,communications
communicted,communicated communicted,communicated
communiction,communication
communikay,communiqué communikay,communiqué
communikays,communiqués communikays,communiqués
communisim,communism communisim,communism
@ -11811,6 +11821,7 @@ communties,communities
communtiy,community communtiy,community
communty,community communty,community
communuication,communication communuication,communication
commutablility,commutability
commutated,commuted commutated,commuted
commutating,commuting commutating,commuting
commutive,commutative commutive,commutative
@ -11856,6 +11867,7 @@ compalint,compliant
compandium,compendium compandium,compendium
companians,companions companians,companions
companines,companions companines,companions
companinion,companion
companis,companions companis,companions
compansate,compensate compansate,compensate
compansated,compensated compansated,compensated
@ -12536,6 +12548,7 @@ comunism,communism
comunist,communist comunist,communist
comunists,communists comunists,communists
comunity,community comunity,community
comutability,commutability
comute,commute,compute comute,commute,compute
comuted,commuted,computed comuted,commuted,computed
comventions,conventions comventions,conventions
@ -16324,6 +16337,7 @@ dataum,datum
datbase,database datbase,database
datbases,databases datbases,databases
datea,date,data datea,date,data
datebase,database
datecreatedd,datecreated datecreatedd,datecreated
datection,detection datection,detection
datections,detections datections,detections
@ -17544,6 +17558,7 @@ demudulator,demodulator
denegerate,degenerate denegerate,degenerate
denegrating,denigrating denegrating,denigrating
deneirs,deniers deneirs,deniers
denile,denial
denisty,density denisty,density
denomal,denormal denomal,denormal
denomals,denormals denomals,denormals
@ -19072,6 +19087,7 @@ diganosed,diagnosed
diganosis,diagnosis diganosis,diagnosis
diganostic,diagnostic diganostic,diagnostic
digesty,digest digesty,digest
digets,digest,digests
diggit,digit diggit,digit
diggital,digital diggital,digital
diggits,digits diggits,digits
@ -19081,6 +19097,7 @@ digitial,digital
digitis,digits digitis,digits
dignitiy,dignity dignitiy,dignity
dignostics,diagnostics dignostics,diagnostics
digset,digest
dilema,dilemma dilema,dilemma
dilemas,dilemmas dilemas,dilemmas
dilineate,delineate dilineate,delineate
@ -19245,6 +19262,7 @@ directiories,directories
directiory,directory directiory,directory
directivos,directions directivos,directions
directix,directx directix,directx
directlor,directory,director
directoies,directories directoies,directories
directon,direction directon,direction
directoories,directories directoories,directories
@ -19432,6 +19450,7 @@ disaterous,disastrous
disatisfaction,dissatisfaction disatisfaction,dissatisfaction
disatisfied,dissatisfied disatisfied,dissatisfied
disatissfied,dissatisfied disatissfied,dissatisfied
disatnce,distance
disatrous,disastrous disatrous,disastrous
disatvantage,disadvantage disatvantage,disadvantage
disatvantaged,disadvantaged disatvantaged,disadvantaged
@ -19784,6 +19803,7 @@ dismanteld,dismantled
dismanteled,dismantled dismanteled,dismantled
dismanting,dismantling dismanting,dismantling
dismantleing,dismantling dismantleing,dismantling
dismension,dimension
dismentled,dismantled dismentled,dismantled
dismisals,dismissal dismisals,dismissal
dismisse,dismissive dismisse,dismissive
@ -21387,6 +21407,7 @@ efficienctly,efficiency
efficientcy,efficiently efficientcy,efficiently
efficienty,efficiently efficienty,efficiently
efficieny,efficiency,efficiently efficieny,efficiency,efficiently
efficitently,efficiently
effictiveness,effectiveness effictiveness,effectiveness
effiecient,efficient effiecient,efficient
effiency,efficiency effiency,efficiency
@ -21988,6 +22009,7 @@ encapsualtes,encapsulates
encapsulatzion,encapsulation encapsulatzion,encapsulation
encapsulte,encapsulate encapsulte,encapsulate
encapsultion,encapsulation encapsultion,encapsulation
encapsultions,encapsulations
encarcerated,incarcerated encarcerated,incarcerated
encarceration,incarceration encarceration,incarceration
encaspulate,encapsulate encaspulate,encapsulate
@ -23740,6 +23762,7 @@ excutes,executes
excuting,executing excuting,executing
excution,execution excution,execution
excutive,executive excutive,executive
exdcutive,executive
exececutable,executable exececutable,executable
execeed,exceed execeed,exceed
execeeded,exceeded execeeded,exceeded
@ -23773,6 +23796,7 @@ exectuioners,executioner
exectuions,executions exectuions,executions
exectuive,executive exectuive,executive
exectuives,executives exectuives,executives
exectuor,executor
execture,execute execture,execute
exectured,executed exectured,executed
exectures,executes exectures,executes
@ -24193,6 +24217,7 @@ expct,expect
expcted,expected expcted,expected
expctedly,expectedly expctedly,expectedly
expcting,expecting expcting,expecting
expecatation,expectation
expecations,expectations expecations,expectations
expeced,expected expeced,expected
expeceted,expected expeceted,expected
@ -25652,6 +25677,7 @@ feasabile,feasible
feasability,feasibility feasability,feasibility
feasable,feasible feasable,feasible
feasbile,feasible feasbile,feasible
feasiblty,feasibility
featch,fetch,each featch,fetch,each
featchd,fetched featchd,fetched
featched,fetched featched,fetched
@ -28363,7 +28389,7 @@ haave,have
habaeus,habeas habaeus,habeas
habbit,habit habbit,habit
habbits,habits habbits,habits
habe,have habe,have,babe
habeus,habeas habeus,habeas
hability,ability hability,ability
habsbourg,habsburg habsbourg,habsburg
@ -29581,7 +29607,7 @@ icrements,increments
idae,idea idae,idea
idaeidae,idea idaeidae,idea
idaes,ideas idaes,ideas
idead,idea,ideas idead,idea,ideas,ideal,dead
idealisim,idealism idealisim,idealism
idealisitc,idealistic idealisitc,idealistic
idealisitic,idealistic idealisitic,idealistic
@ -29607,6 +29633,8 @@ idenfitifers,identifiers
idenfitify,identify idenfitify,identify
idenfity,identify idenfity,identify
idenifiable,identifiable idenifiable,identifiable
idenify,identify
idenifying,identifying
idenitfy,identify idenitfy,identify
idenities,identities idenities,identities
idenitify,identify idenitify,identify
@ -30908,6 +30936,7 @@ incorprates,incorporates
incorproate,incorporated incorproate,incorporated
incorreclty,incorrectly incorreclty,incorrectly
incorrecly,incorrectly incorrecly,incorrectly
incorrectled,incorrectly
incorrecty,incorrectly incorrecty,incorrectly
incorreect,incorrect incorreect,incorrect
incorreectly,incorrectly incorreectly,incorrectly
@ -31854,6 +31883,7 @@ initiailizing,initializing
initiaitive,initiative initiaitive,initiative
initiaitives,initiatives initiaitives,initiatives
initiaitve,initiatives initiaitve,initiatives
initiaization,initialization
initiales,initials,initialise,initializes,initialises initiales,initials,initialise,initializes,initialises
initialialise,initialise initialialise,initialise
initialialize,initialize initialialize,initialize
@ -32418,6 +32448,7 @@ instantiaties,instantiates
instantiatoins,instantiations instantiatoins,instantiations
instanty,instantly instanty,instantly
instanze,instance instanze,instance
instaslled,installed
instatance,instance instatance,instance
instatiate,instantiate instatiate,instantiate
instatiating,instantiating instatiating,instantiating
@ -35834,6 +35865,7 @@ lubricat,lubricant
luch,lunch luch,lunch
lucifear,lucifer lucifear,lucifer
luckilly,luckily luckilly,luckily
luckiy,luckily,lucky
luckliy,luckily luckliy,luckily
luckly,luckily luckly,luckily
ludcrious,ludicrous ludcrious,ludicrous
@ -38487,6 +38519,7 @@ mortailty,mortality
mortards,mortars mortards,mortars
mortarts,mortars mortarts,mortars
morter,mortar morter,mortar
mortum,mortem
moruning,mourning moruning,mourning
mose,more,mouse,mode mose,more,mouse,mode
mositurizer,moisturizer mositurizer,moisturizer
@ -38733,6 +38766,7 @@ multlipliers,multipliers
multliplies,multiplies multliplies,multiplies
multliply,multiply multliply,multiply
multliplying,multiplying multliplying,multiplying
multpart,multipart
multpile,multiple multpile,multiple
multple,multiple multple,multiple
multples,multiples multples,multiples
@ -39210,6 +39244,7 @@ neccessities,necessities
neccessity,necessity neccessity,necessity
neccisary,necessary neccisary,necessary
neccsessary,necessary neccsessary,necessary
neceassary,necessary
necesarily,necessarily necesarily,necessarily
necesarrily,necessarily necesarrily,necessarily
necesarry,necessary necesarry,necessary
@ -40497,6 +40532,7 @@ obhectifying,objectifying
obhecting,objecting obhecting,objecting
obhection,objection obhection,objection
obhects,objects obhects,objects
obiect,object
obiedence,obedience obiedence,obedience
obilgatory,obligatory obilgatory,obligatory
obilterated,obliterated obilterated,obliterated
@ -40722,6 +40758,7 @@ ocilates,oscillates
ocilating,oscillating ocilating,oscillating
ocilator,oscillator ocilator,oscillator
ocilators,oscillators ocilators,oscillators
ocne,once
ocntext,context ocntext,context
ocorrence,occurrence ocorrence,occurrence
ocorrences,occurrences ocorrences,occurrences
@ -41008,6 +41045,7 @@ onomanopea,onomatopoeia
onomonopea,onomatopoeia onomonopea,onomatopoeia
onot,note,not onot,note,not
onother,another onother,another
onotolgy,ontology
onsalught,onslaught onsalught,onslaught
onself,oneself onself,oneself
onservation,conservation,observation onservation,conservation,observation
@ -41293,6 +41331,8 @@ oppurtunity,opportunity
opputunity,opportunity opputunity,opportunity
opration,operation opration,operation
oprations,operations oprations,operations
oprator,operator
oprators,operators
opreating,operating opreating,operating
opreation,operation opreation,operation
opreations,operations opreations,operations
@ -41332,6 +41372,7 @@ optimisim,optimism
optimisitc,optimistic optimisitc,optimistic
optimisitic,optimistic optimisitic,optimistic
optimissm,optimism optimissm,optimism
optimistacally,optimistically
optimistc,optimistic optimistc,optimistic
optimistisch,optimistic optimistisch,optimistic
optimitation,optimization optimitation,optimization
@ -42521,6 +42562,7 @@ parameterical,parametrical
parameterr,parameter parameterr,parameter
parameterts,parameters parameterts,parameters
parametes,parameters parametes,parameters
parametetrized,parameterized
parametic,parametric,paramedic parametic,parametric,paramedic
parametics,paramedics parametics,paramedics
parametised,parametrised parametised,parametrised
@ -42533,6 +42575,7 @@ parametrs,parameters
parametter,parameter parametter,parameter
parametters,parameters parametters,parameters
paramiters,parameters paramiters,parameters
paramnetrized,parameterized
paramormal,paranormal paramormal,paranormal
paramss,params paramss,params
paramter,parameter paramter,parameter
@ -42554,6 +42597,9 @@ paramterless,parameterless
paramters,parameters paramters,parameters
paramtrical,parametrical paramtrical,parametrical
parana,piranha parana,piranha
paraneter,parameter
paraneterized,parameterized
paranetrized,parameterized
paraniac,paranoiac paraniac,paranoiac
paranioa,paranoia paranioa,paranoia
paraniod,paranoid paraniod,paranoid
@ -42622,6 +42668,7 @@ parellels,parallels
parem,param parem,param
paremeter,parameter paremeter,parameter
paremeters,parameters paremeters,parameters
paremetric,parametric
paremsan,parmesan paremsan,parmesan
paremter,parameter paremter,parameter
paremters,parameters paremters,parameters
@ -45760,6 +45807,7 @@ presest,presets
presetation,presentation presetation,presentation
preseve,preserve preseve,preserve
preseved,preserved preseved,preserved
presever,preserve
preseverance,perseverance preseverance,perseverance
preseverence,perseverance preseverence,perseverance
preseves,preserves preseves,preserves
@ -46260,6 +46308,7 @@ proces,process
procesd,proceeds procesd,proceeds
procesed,proceeds,processed procesed,proceeds,processed
proceses,processes proceses,processes
proceseses,processes
procesess,processes procesess,processes
proceshandler,processhandler proceshandler,processhandler
procesing,processing procesing,processing
@ -47768,6 +47817,7 @@ quantitty,quantity
quantuum,quantum quantuum,quantum
quarantaine,quarantine quarantaine,quarantine
quarante,quarantine quarante,quarantine
quarantee,guarantee
quarantena,quarantine quarantena,quarantine
quarantene,quarantine quarantene,quarantine
quarantenni,quarantine quarantenni,quarantine
@ -48465,6 +48515,7 @@ recident,resident
recidents,residents recidents,residents
reciding,residing reciding,residing
reciepents,recipients reciepents,recipients
reciepient,recipient
reciept,receipt reciept,receipt
reciepts,receipts reciepts,receipts
recievd,received recievd,received
@ -48816,6 +48867,7 @@ recyling,recycling
redability,readability redability,readability
redable,readable redable,readable
redandant,redundant redandant,redundant
redaundant,redundant
redction,reduction,redaction redction,reduction,redaction
redeable,readable redeable,readable
redeclaation,redeclaration redeclaation,redeclaration
@ -49234,6 +49286,7 @@ regocnition,recognition
regon,region regon,region
regons,regions regons,regions
regorded,recorded regorded,recorded
regradless,regardless
regrads,regards regrads,regards
regrding,regarding regrding,regarding
regrds,regards regrds,regards
@ -50363,6 +50416,7 @@ repore,rapport,report,repose
reporeted,reported reporeted,reported
reporing,reporting reporing,reporting
reporitory,repository reporitory,repository
reporposed,repurposed
reportadly,reportedly reportadly,reportedly
reportedy,reportedly reportedy,reportedly
reporteros,reporters reporteros,reporters
@ -50637,6 +50691,7 @@ reqister,register
reqiuem,requiem reqiuem,requiem
reqiure,require reqiure,require
reqiured,required reqiured,required
reqquests,requests
reqrite,rewrite reqrite,rewrite
reqrites,rewrites reqrites,rewrites
requed,requeued requed,requeued
@ -53636,6 +53691,8 @@ shanges,changes
shanghi,shanghai shanghi,shanghai
shanghia,shanghai shanghia,shanghai
shanging,changing,shanking shanging,changing,shanking
shaodw,shadow
shaodws,shadows
shaprening,sharpening shaprening,sharpening
shaprie,sharpie shaprie,sharpie
shaprly,sharply shaprly,sharply
@ -53833,6 +53890,7 @@ shoulndt,shouldnt
shouls,should shouls,should
shoult,should shoult,should
shouod,should shouod,should
shourtcur,shortcut
shoutot,shoutout shoutot,shoutout
shouw,show shouw,show
shouws,shows shouws,shows
@ -56147,6 +56205,7 @@ starwberries,strawberries
starwberry,strawberry starwberry,strawberry
statamenet,statement statamenet,statement
statamenets,statements statamenets,statements
statefull,stateful
stategies,strategies stategies,strategies
stategise,strategise stategise,strategise
stategised,strategised stategised,strategised
@ -56594,6 +56653,7 @@ stringifed,stringified
stringnet,stringent stringnet,stringent
strinsg,strings strinsg,strings
strippen,stripped strippen,stripped
strippped,stripped
stript,stripped,script stript,stripped,script
stripted,scripted,stripped stripted,scripted,stripped
stripting,scripting,stripping stripting,scripting,stripping
@ -57345,6 +57405,7 @@ sufication,suffocation
suficcient,sufficient suficcient,sufficient
suficient,sufficient suficient,sufficient
suficiently,sufficiently suficiently,sufficiently
sufix,suffix
sufocate,suffocate sufocate,suffocate
sufocated,suffocated sufocated,suffocated
sufocates,suffocates sufocates,suffocates
@ -58257,6 +58318,7 @@ syntacks,syntax
syntacs,syntax syntacs,syntax
syntact,syntax syntact,syntax
syntactally,syntactically syntactally,syntactically
syntacticly,syntactically
syntacts,syntax syntacts,syntax
syntak,syntax syntak,syntax
syntaks,syntax syntaks,syntax
@ -59529,6 +59591,7 @@ tht,the,that
thta,that thta,that
thtat,that thtat,that
thte,the,that thte,the,that
thubmnail,thumbnail
thubmnails,thumbnails thubmnails,thumbnails
thudnerbolt,thunderbolt thudnerbolt,thunderbolt
thuis,this,thus thuis,this,thus

Can't render this file because it is too large.

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
[package] [package]
name = "typos-vars" name = "typos-vars"
version = "0.8.17" version = "0.8.18"
description = "Source Code Spelling Correction" description = "Source Code Spelling Correction"
readme = "../../README.md" readme = "../../README.md"
categories = ["development-tools", "text-processing"] categories = ["development-tools", "text-processing"]

View file

@ -1,6 +1,6 @@
[package] [package]
name = "typos" name = "typos"
version = "0.10.23" version = "0.10.24"
description = "Source Code Spelling Correction" description = "Source Code Spelling Correction"
readme = "../../README.md" readme = "../../README.md"
categories = ["development-tools", "text-processing"] categories = ["development-tools", "text-processing"]

View file

@ -1,6 +1,6 @@
[package] [package]
name = "varcon-core" name = "varcon-core"
version = "4.0.7" version = "4.0.8"
description = "Varcon-relevant data structures" description = "Varcon-relevant data structures"
readme = "../../README.md" readme = "../../README.md"
categories = ["text-processing"] categories = ["text-processing"]

View file

@ -1,6 +1,6 @@
[package] [package]
name = "varcon" name = "varcon"
version = "0.7.5" version = "0.7.6"
description = "Source Code Spelling Correction" description = "Source Code Spelling Correction"
readme = "../../README.md" readme = "../../README.md"
categories = ["development-tools", "text-processing"] categories = ["development-tools", "text-processing"]

View file

@ -6,7 +6,7 @@ config at this repository:
```yaml ```yaml
repos: repos:
- repo: https://github.com/crate-ci/typos - repo: https://github.com/crate-ci/typos
rev: v1.21.0 rev: v1.22.0
hooks: hooks:
- id: typos - id: typos
``` ```

View file

@ -3,7 +3,7 @@ from __future__ import annotations
from setuptools import setup from setuptools import setup
TYPOS_VERSION = '1.21.0' TYPOS_VERSION = '1.22.0'
setup( setup(