mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-11-04 11:49:16 +00:00 
			
		
		
		
	Deb: update version
This commit is contained in:
		
							parent
							
								
									a6efb4d60b
								
							
						
					
					
						commit
						52f158d054
					
				
							
								
								
									
										3
									
								
								.github/workflows/deb.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								.github/workflows/deb.yml
									
									
									
									
										vendored
									
									
								
							@ -27,7 +27,7 @@ jobs:
 | 
				
			|||||||
      - name: Checkout codebase
 | 
					      - name: Checkout codebase
 | 
				
			||||||
        uses: actions/checkout@v2
 | 
					        uses: actions/checkout@v2
 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
          submodules: 'recursive'
 | 
					          submodules: "recursive"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Install build dependencies
 | 
					      - name: Install build dependencies
 | 
				
			||||||
        run: |
 | 
					        run: |
 | 
				
			||||||
@ -49,7 +49,6 @@ jobs:
 | 
				
			|||||||
          path: ./*.deb
 | 
					          path: ./*.deb
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Setup Repository
 | 
					      - name: Setup Repository
 | 
				
			||||||
        if: github.event_name == 'release'
 | 
					 | 
				
			||||||
        run: |
 | 
					        run: |
 | 
				
			||||||
          git clone https://github.com/v2fly/debian.git archive
 | 
					          git clone https://github.com/v2fly/debian.git archive
 | 
				
			||||||
          echo ${{ secrets.DEBIAN_GPG_PRIVATE }} | base64 -d > private.key
 | 
					          echo ${{ secrets.DEBIAN_GPG_PRIVATE }} | base64 -d > private.key
 | 
				
			||||||
 | 
				
			|||||||
@ -1,3 +1,15 @@
 | 
				
			|||||||
 | 
					v2ray-core (4.34.0-1) unstable; urgency=medium
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  * TLS Session Resumption is now disabled by default (#569).
 | 
				
			||||||
 | 
					    See #557 for more information.
 | 
				
			||||||
 | 
					  * Support for the legacy Shadowsocks protocol with stream ciphers has been removed (#566). 
 | 
				
			||||||
 | 
					    If you are still using the unsecure stream ciphers, migrate to Shadowsocks AEAD (ChaCha20Poly1305 and AES-GCM) immediately.
 | 
				
			||||||
 | 
					  * We have added preliminary support for DNS over QUIC (#534).
 | 
				
			||||||
 | 
					    Currently only non-proxied lookup is supported.
 | 
				
			||||||
 | 
					  * No longer Release s390x, ppc64, ppc64le, and MIPS SoftFloat
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 -- ymshenyu <ymshenyu@gmail.com>  Mon, 04 Jan 2021 22:00:51 +0800
 | 
				
			||||||
 | 
					
 | 
				
			||||||
v2ray-core (4.33.0-1) unstable; urgency=medium
 | 
					v2ray-core (4.33.0-1) unstable; urgency=medium
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  * Remove XTLS
 | 
					  * Remove XTLS
 | 
				
			||||||
@ -6,7 +18,7 @@ v2ray-core (4.33.0-1) unstable; urgency=medium
 | 
				
			|||||||
  * Update to IETF QUIC draft-32 (draft-29 is still supported)
 | 
					  * Update to IETF QUIC draft-32 (draft-29 is still supported)
 | 
				
			||||||
  * Use Go 1.15.5
 | 
					  * Use Go 1.15.5
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 -- kslr <kslrwang@gmail.com>  Sat Nov 21 20:42:25 CST 2020
 | 
					 -- kslr <kslrwang@gmail.com>  Mon, 04 Jan 2021 22:00:07 +0800
 | 
				
			||||||
 | 
					
 | 
				
			||||||
v2ray-core (4.32.1-1) unstable; urgency=medium
 | 
					v2ray-core (4.32.1-1) unstable; urgency=medium
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -16,9 +16,9 @@ override_dh_auto_clean:
 | 
				
			|||||||
	rm -rf vendor
 | 
						rm -rf vendor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
override_dh_auto_build:
 | 
					override_dh_auto_build:
 | 
				
			||||||
	DH_GOPKG="v2ray.com/core/main" dh_auto_build -- -ldflags "-s -w" -tags $(DEB_VERSION_UPSTREAM)
 | 
						DH_GOPKG="v2ray.com/core/main" dh_auto_build -- -ldflags "-s -w"
 | 
				
			||||||
	cd $(BUILDDIR); mv bin/main bin/v2ray
 | 
						cd $(BUILDDIR); mv bin/main bin/v2ray
 | 
				
			||||||
	DH_GOPKG="v2ray.com/core/infra/control/main" dh_auto_build -- -ldflags "-s -w" -tags $(DEB_VERSION_UPSTREAM)
 | 
						DH_GOPKG="v2ray.com/core/infra/control/main" dh_auto_build -- -ldflags "-s -w" -tags confonly
 | 
				
			||||||
	cd $(BUILDDIR); mv bin/main bin/v2ctl
 | 
						cd $(BUILDDIR); mv bin/main bin/v2ctl
 | 
				
			||||||
 | 
					
 | 
				
			||||||
override_dh_auto_install:
 | 
					override_dh_auto_install:
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user