mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 07:12:26 -05:00 
			
		
		
		
	Bumps [github.com/miekg/dns](https://github.com/miekg/dns) from 1.1.64 to 1.1.65. - [Changelog](https://github.com/miekg/dns/blob/master/Makefile.release) - [Commits](https://github.com/miekg/dns/compare/v1.1.64...v1.1.65) --- updated-dependencies: - dependency-name: github.com/miekg/dns dependency-version: 1.1.65 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			275 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			275 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package dns
 | |
| 
 | |
| import "fmt"
 | |
| 
 | |
| // Version is current version of this library.
 | |
| var Version = v{1, 1, 65}
 | |
| 
 | |
| // v holds the version of this library.
 | |
| type v struct {
 | |
| 	Major, Minor, Patch int
 | |
| }
 | |
| 
 | |
| func (v v) String() string {
 | |
| 	return fmt.Sprintf("%d.%d.%d", v.Major, v.Minor, v.Patch)
 | |
| }
 |